Trait UnparsedExtension

Source
pub trait UnparsedExtension<U>
where U: UnparsedMutExt,
{ type Error: Error; // Required methods fn try_from_unparsed(unparsed_mut: &mut U) -> Result<Self, Self::Error> where Self: Sized; fn try_into_unparsed(self, unparsed_mut: &mut U) -> Result<(), Self::Error>; }
Expand description

Transform types from and into the Unparsed structure

Required Associated Types§

Required Methods§

Source

fn try_from_unparsed(unparsed_mut: &mut U) -> Result<Self, Self::Error>
where Self: Sized,

Generate Self from Unparsed

Source

fn try_into_unparsed(self, unparsed_mut: &mut U) -> Result<(), Self::Error>

Insert Self into Unparsed

Implementors§