pub enum Precision {
Year,
Month,
Season,
Day,
}Expand description
Precision of a date expression (its lowest specified component).
Variants§
Year
Year only (1985, Y17E7).
Month
Year and calendar month (1985-04).
Season
Month slot holds a sub-year grouping code 21–41 (ISO 8601-2 §4.8).
Day
Complete calendar date (1985-04-12).
Trait Implementations§
impl Copy for Precision
impl Eq for Precision
impl StructuralPartialEq for Precision
Auto Trait Implementations§
impl Freeze for Precision
impl RefUnwindSafe for Precision
impl Send for Precision
impl Sync for Precision
impl Unpin for Precision
impl UnsafeUnpin for Precision
impl UnwindSafe for Precision
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