pub enum DateKind {
MonthOnly,
DateOnly,
DateTime,
}Expand description
What kind of date was detected inside a filename.
Variants§
MonthOnly
Year-month only (e.g. 1975-08).
DateOnly
Full calendar date (e.g. 2017-12-30).
DateTime
Calendar date with time component (e.g. 2017-12-30T10-44-56).
Trait Implementations§
impl Copy for DateKind
impl Eq for DateKind
impl StructuralPartialEq for DateKind
Auto Trait Implementations§
impl Freeze for DateKind
impl RefUnwindSafe for DateKind
impl Send for DateKind
impl Sync for DateKind
impl Unpin for DateKind
impl UnsafeUnpin for DateKind
impl UnwindSafe for DateKind
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