pub enum VisitMap<'de> {
Datetime(Datetime),
Key(Cow<'de, str>),
}
Expand description
Integrate Datetime
into an untagged deserialize
Variants§
Datetime(Datetime)
The map was deserialized as a Datetime value
Key(Cow<'de, str>)
The map is of an unknown format and needs further deserialization
Implementations§
Auto Trait Implementations§
impl<'de> Freeze for VisitMap<'de>
impl<'de> RefUnwindSafe for VisitMap<'de>
impl<'de> Send for VisitMap<'de>
impl<'de> Sync for VisitMap<'de>
impl<'de> Unpin for VisitMap<'de>
impl<'de> UnwindSafe for VisitMap<'de>
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