pub enum OgrSourceTimeFormat {
Custom(Box<OgrSourceTimeFormatCustom>),
UnixTimeStamp(Box<OgrSourceTimeFormatUnixTimeStamp>),
Auto(Box<OgrSourceTimeFormatAuto>),
}Variants§
Custom(Box<OgrSourceTimeFormatCustom>)
UnixTimeStamp(Box<OgrSourceTimeFormatUnixTimeStamp>)
Auto(Box<OgrSourceTimeFormatAuto>)
Trait Implementations§
Source§impl Clone for OgrSourceTimeFormat
impl Clone for OgrSourceTimeFormat
Source§fn clone(&self) -> OgrSourceTimeFormat
fn clone(&self) -> OgrSourceTimeFormat
Returns a duplicate 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 OgrSourceTimeFormat
impl Debug for OgrSourceTimeFormat
Source§impl Default for OgrSourceTimeFormat
impl Default for OgrSourceTimeFormat
Source§impl<'de> Deserialize<'de> for OgrSourceTimeFormat
impl<'de> Deserialize<'de> for OgrSourceTimeFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OgrSourceTimeFormat
impl PartialEq for OgrSourceTimeFormat
Source§impl Serialize for OgrSourceTimeFormat
impl Serialize for OgrSourceTimeFormat
impl StructuralPartialEq for OgrSourceTimeFormat
Auto Trait Implementations§
impl Freeze for OgrSourceTimeFormat
impl RefUnwindSafe for OgrSourceTimeFormat
impl Send for OgrSourceTimeFormat
impl Sync for OgrSourceTimeFormat
impl Unpin for OgrSourceTimeFormat
impl UnsafeUnpin for OgrSourceTimeFormat
impl UnwindSafe for OgrSourceTimeFormat
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