pub trait IMSVidGenericSink_Impl: Sized + IMSVidOutputDevice_Impl {
    // Required methods
    fn SetSinkFilter(&self, bstrname: &BSTR) -> Result<()>;
    fn SinkStreams(&self) -> Result<MSVidSinkStreams>;
    fn SetSinkStreams(&self, streams: MSVidSinkStreams) -> Result<()>;
}

Required Methods§

fn SetSinkFilter(&self, bstrname: &BSTR) -> Result<()>

fn SinkStreams(&self) -> Result<MSVidSinkStreams>

fn SetSinkStreams(&self, streams: MSVidSinkStreams) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§