pub struct GYearMonth { /* private fields */ }
Expand description
XML Schema gYearMonth
datatype
It encodes the value using a number of seconds from the Gregorian calendar era using a Decimal
,
when combined with the day-time 31T00:00:00, and an optional timezone offset in minutes.
Implementations§
Source§impl GYearMonth
impl GYearMonth
pub const MAX: Self = _
pub const MIN: Self = _
pub fn from_be_bytes(bytes: [u8; 18]) -> Self
pub fn year(self) -> i64
pub fn month(self) -> u8
pub fn timezone(self) -> Option<DayTimeDuration>
pub fn timezone_offset(self) -> Option<TimezoneOffset>
pub fn adjust(self, timezone_offset: Option<TimezoneOffset>) -> Option<Self>
pub fn to_be_bytes(self) -> [u8; 18]
Sourcepub fn is_identical_with(self, other: Self) -> bool
pub fn is_identical_with(self, other: Self) -> bool
Checks if the two values are identical.
Trait Implementations§
Source§impl Clone for GYearMonth
impl Clone for GYearMonth
Source§fn clone(&self) -> GYearMonth
fn clone(&self) -> GYearMonth
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GYearMonth
impl Debug for GYearMonth
Source§impl Display for GYearMonth
impl Display for GYearMonth
Source§impl From<Date> for GYearMonth
impl From<Date> for GYearMonth
Conversion according to XPath cast rules.
Source§impl From<GYearMonth> for GMonth
impl From<GYearMonth> for GMonth
Source§fn from(year_month: GYearMonth) -> Self
fn from(year_month: GYearMonth) -> Self
Converts to this type from the input type.
Source§impl FromStr for GYearMonth
impl FromStr for GYearMonth
Source§impl Hash for GYearMonth
impl Hash for GYearMonth
Source§impl PartialEq for GYearMonth
impl PartialEq for GYearMonth
Source§impl PartialOrd for GYearMonth
impl PartialOrd for GYearMonth
Source§impl TryFrom<DateTime> for GYearMonth
impl TryFrom<DateTime> for GYearMonth
Conversion according to XPath cast rules.
Source§impl TryFrom<GYearMonth> for GYear
impl TryFrom<GYearMonth> for GYear
Source§type Error = DateTimeOverflowError
type Error = DateTimeOverflowError
The type returned in the event of a conversion error.
impl Copy for GYearMonth
impl Eq for GYearMonth
impl StructuralPartialEq for GYearMonth
Auto Trait Implementations§
impl Freeze for GYearMonth
impl RefUnwindSafe for GYearMonth
impl Send for GYearMonth
impl Sync for GYearMonth
impl Unpin for GYearMonth
impl UnwindSafe for GYearMonth
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more