pub trait CxDecodingApi {
    // Required method
    fn video_decoding_input_box(
        &mut self,
        index: LiveId,
        f: Box<dyn FnMut(Vec<u8, Global>) + Send, Global>
    );

    // Provided method
    fn video_decoding_input<F>(&mut self, index: LiveId, f: F)
       where F: FnMut(Vec<u8, Global>) + Send + 'static { ... }
}

Required Methods§

fn video_decoding_input_box( &mut self, index: LiveId, f: Box<dyn FnMut(Vec<u8, Global>) + Send, Global> )

Provided Methods§

fn video_decoding_input<F>(&mut self, index: LiveId, f: F)where F: FnMut(Vec<u8, Global>) + Send + 'static,

Implementors§