Trait makepad_platform::CxDecodingApi
source · pub trait CxDecodingApi {
// Required method
fn video_decoding_input_box(
&mut self,
index: LiveId,
f: Box<dyn FnMut(Vec<u8>) + Send + 'static>
);
// Provided method
fn video_decoding_input<F>(&mut self, index: LiveId, f: F)
where F: FnMut(Vec<u8>) + Send + 'static { ... }
}