pub trait IMFMediaSession_Impl: Sized + IMFMediaEventGenerator_Impl {
    // Required methods
    fn SetTopology(
        &self,
        dwsettopologyflags: u32,
        ptopology: Option<&IMFTopology>
    ) -> Result<()>;
    fn ClearTopologies(&self) -> Result<()>;
    fn Start(
        &self,
        pguidtimeformat: *const GUID,
        pvarstartposition: *const PROPVARIANT
    ) -> Result<()>;
    fn Pause(&self) -> Result<()>;
    fn Stop(&self) -> Result<()>;
    fn Close(&self) -> Result<()>;
    fn Shutdown(&self) -> Result<()>;
    fn GetClock(&self) -> Result<IMFClock>;
    fn GetSessionCapabilities(&self) -> Result<u32>;
    fn GetFullTopology(
        &self,
        dwgetfulltopologyflags: u32,
        topoid: u64
    ) -> Result<IMFTopology>;
}

Required Methods§

fn SetTopology( &self, dwsettopologyflags: u32, ptopology: Option<&IMFTopology> ) -> Result<()>

fn ClearTopologies(&self) -> Result<()>

fn Start( &self, pguidtimeformat: *const GUID, pvarstartposition: *const PROPVARIANT ) -> Result<()>

fn Pause(&self) -> Result<()>

fn Stop(&self) -> Result<()>

fn Close(&self) -> Result<()>

fn Shutdown(&self) -> Result<()>

fn GetClock(&self) -> Result<IMFClock>

fn GetSessionCapabilities(&self) -> Result<u32>

fn GetFullTopology( &self, dwgetfulltopologyflags: u32, topoid: u64 ) -> Result<IMFTopology>

Object Safety§

This trait is not object safe.

Implementors§