[][src]Trait activitystreams_ext::UnparsedExtension

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>; }

Transform types from and into the Unparsed structure

Associated Types

type Error: Error

Loading content...

Required methods

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

Generate Self from Unparsed

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

Insert Self into Unparsed

Loading content...

Implementors

Loading content...