pub enum HeaderDateFormat {
DayMonth,
MonthDay,
Iso8601,
Ctime,
}Expand description
Formatting applied when returning parsed EWF header date values.
Variants§
DayMonth
Day-month date order.
MonthDay
Month-day date order.
Iso8601
ISO 8601-style date formatting.
Ctime
C ctime-style date formatting.
Implementations§
Trait Implementations§
Source§impl Clone for HeaderDateFormat
impl Clone for HeaderDateFormat
Source§fn clone(&self) -> HeaderDateFormat
fn clone(&self) -> HeaderDateFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HeaderDateFormat
Source§impl Debug for HeaderDateFormat
impl Debug for HeaderDateFormat
Source§impl Default for HeaderDateFormat
impl Default for HeaderDateFormat
Source§fn default() -> HeaderDateFormat
fn default() -> HeaderDateFormat
Returns the “default value” for a type. Read more
impl Eq for HeaderDateFormat
Source§impl PartialEq for HeaderDateFormat
impl PartialEq for HeaderDateFormat
impl StructuralPartialEq for HeaderDateFormat
Auto Trait Implementations§
impl Freeze for HeaderDateFormat
impl RefUnwindSafe for HeaderDateFormat
impl Send for HeaderDateFormat
impl Sync for HeaderDateFormat
impl Unpin for HeaderDateFormat
impl UnsafeUnpin for HeaderDateFormat
impl UnwindSafe for HeaderDateFormat
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.