pub trait Outputable: Sized {
    fn get_id() -> ObsString;
    fn create(
        context: &mut CreatableOutputContext<'_, Self>,
        output: OutputContext
    ) -> Self; fn start(&mut self) -> bool { ... } fn stop(&mut self, _ts: u64) { ... } }

Required Methods

Provided Methods

Implementors