pub trait EncoderOutput {
    // Required method
    fn handle(&mut self) -> *mut c_void;
}
Expand description

If a type implements this trait it means it is a valid output buffer for the encoding API.

Required Methods§

source

fn handle(&mut self) -> *mut c_void

Get the handle of the output resource.

Implementors§