Trait IMediaSample2_Impl
pub trait IMediaSample2_Impl: IMediaSample_Impl {
// Required methods
fn GetProperties(
&self,
cbproperties: u32,
pbproperties: *mut u8,
) -> Result<()>;
fn SetProperties(
&self,
cbproperties: u32,
pbproperties: *const u8,
) -> Result<()>;
}
Required Methods§
fn GetProperties(&self, cbproperties: u32, pbproperties: *mut u8) -> Result<()>
fn SetProperties( &self, cbproperties: u32, pbproperties: *const u8, ) -> 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.