Trait ITMediaControl_Impl
pub trait ITMediaControl_Impl: IDispatch_Impl {
// Required methods
fn Start(&self) -> Result<()>;
fn Stop(&self) -> Result<()>;
fn Pause(&self) -> Result<()>;
fn MediaState(&self) -> Result<TERMINAL_MEDIA_STATE>;
}
Required Methods§
fn Start(&self) -> Result<()>
fn Stop(&self) -> Result<()>
fn Pause(&self) -> Result<()>
fn MediaState(&self) -> Result<TERMINAL_MEDIA_STATE>
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.