Trait makepad_widgets::CxDecodingApi
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 { ... }
}