pub trait UnparsedExtension<U>where
    U: UnparsedMutExt,
{ type Error: Error; 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§

Generate Self from Unparsed

Insert Self into Unparsed

Implementors§