pub trait BytesContentParser<T> {
    // Required method
    fn parse(
        &self,
        bytes: Vec<u8, Global>
    ) -> Result<T, Box<dyn Error + 'static, Global>>;
}

Required Methods§

source

fn parse( &self, bytes: Vec<u8, Global> ) -> Result<T, Box<dyn Error + 'static, Global>>

Implementors§