pub struct ParseIr<T>(pub T, pub Value);Expand description
Intermediate result for a type that requires parsing.
Tuple Fields§
§0: T§1: ValueImplementations§
Trait Implementations§
Source§impl<T: DeserializeOwned> From<ParseIr<Deserialized<T>>> for Deserialized<T>
impl<T: DeserializeOwned> From<ParseIr<Deserialized<T>>> for Deserialized<T>
Source§fn from(value: ParseIr<Deserialized<T>>) -> Self
fn from(value: ParseIr<Deserialized<T>>) -> Self
Converts to this type from the input type.
Source§impl<T: DeserializeOwned> From<ParseIr<Deserialized<T>>> for Value
impl<T: DeserializeOwned> From<ParseIr<Deserialized<T>>> for Value
Source§fn from(value: ParseIr<Deserialized<T>>) -> Self
fn from(value: ParseIr<Deserialized<T>>) -> Self
Converts to this type from the input type.
Source§impl From<ParseIr<NaiveDateTime>> for NaiveDateTime
impl From<ParseIr<NaiveDateTime>> for NaiveDateTime
Source§fn from(value: ParseIr<NaiveDateTime>) -> Self
fn from(value: ParseIr<NaiveDateTime>) -> Self
Converts to this type from the input type.
Source§impl From<ParseIr<NaiveDateTime>> for Value
impl From<ParseIr<NaiveDateTime>> for Value
Source§fn from(value: ParseIr<NaiveDateTime>) -> Self
fn from(value: ParseIr<NaiveDateTime>) -> Self
Converts to this type from the input type.
Source§impl<T: DeserializeOwned> TryFrom<Value> for ParseIr<Deserialized<T>>
impl<T: DeserializeOwned> TryFrom<Value> for ParseIr<Deserialized<T>>
impl<T> StructuralPartialEq for ParseIr<T>
Auto Trait Implementations§
impl<T> Freeze for ParseIr<T>where
T: Freeze,
impl<T> RefUnwindSafe for ParseIr<T>where
T: RefUnwindSafe,
impl<T> Send for ParseIr<T>where
T: Send,
impl<T> Sync for ParseIr<T>where
T: Sync,
impl<T> Unpin for ParseIr<T>where
T: Unpin,
impl<T> UnwindSafe for ParseIr<T>where
T: UnwindSafe,
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