pub trait INSSBuffer2_Impl: Sized + INSSBuffer_Impl {
    // Required methods
    fn GetSampleProperties(&self, cbproperties: u32) -> Result<u8>;
    fn SetSampleProperties(
        &self,
        cbproperties: u32,
        pbproperties: *const u8
    ) -> Result<()>;
}

Required Methods§

fn GetSampleProperties(&self, cbproperties: u32) -> Result<u8>

fn SetSampleProperties( &self, cbproperties: u32, pbproperties: *const u8 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§