pub trait IDistributorNotify_Impl: Sized {
    // Required methods
    fn Stop(&self) -> Result<()>;
    fn Pause(&self) -> Result<()>;
    fn Run(&self, tstart: i64) -> Result<()>;
    fn SetSyncSource(&self, pclock: Option<&IReferenceClock>) -> Result<()>;
    fn NotifyGraphChange(&self) -> Result<()>;
}

Required Methods§

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

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

fn Run(&self, tstart: i64) -> Result<()>

fn SetSyncSource(&self, pclock: Option<&IReferenceClock>) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§