Trait EncoderOutput

Source
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§