Trait content::Content [] [src]

pub trait Content where Self: Sized {
    fn to_content(&self, sink: &mut Sink) -> Result<()>;
    fn from_content(source: &mut Source) -> Result<Self>;
}

Required Methods

Implementors