pub trait IAMGraphStreams_Impl: Sized {
    // Required methods
    fn FindUpstreamInterface(
        &self,
        ppin: Option<&IPin>,
        riid: *const GUID,
        ppvinterface: *mut *mut c_void,
        dwflags: u32
    ) -> Result<()>;
    fn SyncUsingStreamOffset(&self, busestreamoffset: BOOL) -> Result<()>;
    fn SetMaxGraphLatency(&self, rtmaxgraphlatency: i64) -> Result<()>;
}

Required Methods§

fn FindUpstreamInterface( &self, ppin: Option<&IPin>, riid: *const GUID, ppvinterface: *mut *mut c_void, dwflags: u32 ) -> Result<()>

fn SyncUsingStreamOffset(&self, busestreamoffset: BOOL) -> Result<()>

fn SetMaxGraphLatency(&self, rtmaxgraphlatency: i64) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§