pub trait INSSBuffer3_Impl: Sized + INSSBuffer2_Impl {
    // Required methods
    fn SetProperty(
        &self,
        guidbufferproperty: &GUID,
        pvbufferproperty: *const c_void,
        dwbufferpropertysize: u32
    ) -> Result<()>;
    fn GetProperty(
        &self,
        guidbufferproperty: &GUID,
        pvbufferproperty: *mut c_void,
        pdwbufferpropertysize: *mut u32
    ) -> Result<()>;
}

Required Methods§

fn SetProperty( &self, guidbufferproperty: &GUID, pvbufferproperty: *const c_void, dwbufferpropertysize: u32 ) -> Result<()>

fn GetProperty( &self, guidbufferproperty: &GUID, pvbufferproperty: *mut c_void, pdwbufferpropertysize: *mut u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§