Trait IDistributorNotify_Impl
pub trait IDistributorNotify_Impl: IUnknownImpl {
// Required methods
fn Stop(&self) -> Result<()>;
fn Pause(&self) -> Result<()>;
fn Run(&self, tstart: i64) -> Result<()>;
fn SetSyncSource(&self, pclock: Ref<'_, 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: Ref<'_, IReferenceClock>) -> Result<()>
fn NotifyGraphChange(&self) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.