pub trait IAttributeSet_Impl: Sized {
    // Required method
    fn SetAttrib(
        &self,
        guidattribute: &GUID,
        pbattribute: *const u8,
        dwattributelength: u32
    ) -> Result<()>;
}

Required Methods§

fn SetAttrib( &self, guidattribute: &GUID, pbattribute: *const u8, dwattributelength: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§