Trait sourceview5::prelude::ConverterExtManual

source ·
pub trait ConverterExtManual: Sealed + 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]>,

Object Safety§

This trait is not object safe.

Implementors§

source§

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