Skip to main content

ConverterExtManual

Trait ConverterExtManual 

Source
pub trait ConverterExtManual: IsA<Converter> + 'static {
    // Provided method
    fn convert<IN, OUT>(
        &self,
        inbuf: IN,
        outbuf: OUT,
        flags: ConverterFlags,
    ) -> Result<(ConverterResult, usize, usize), Error>
       where IN: AsRef<[u8]>,
             OUT: AsMut<[u8]> { ... }
}

Provided Methods§

Source

fn convert<IN, OUT>( &self, inbuf: IN, outbuf: OUT, flags: ConverterFlags, ) -> Result<(ConverterResult, usize, usize), Error>
where IN: AsRef<[u8]>, OUT: AsMut<[u8]>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<O> ConverterExtManual for O
where O: IsA<Converter>,