pub trait IMediaSample2_Impl: Sized + 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<()>

Object Safety§

This trait is not object safe.

Implementors§