Trait ISettingsIdentity_Impl
pub trait ISettingsIdentity_Impl: IUnknownImpl {
// Required methods
fn GetAttribute(
&self,
reserved: *const c_void,
name: &PCWSTR,
) -> Result<BSTR>;
fn SetAttribute(
&self,
reserved: *const c_void,
name: &PCWSTR,
value: &PCWSTR,
) -> Result<()>;
fn GetFlags(&self) -> Result<u32>;
fn SetFlags(&self, flags: u32) -> Result<()>;
}
Required Methods§
fn GetAttribute(&self, reserved: *const c_void, name: &PCWSTR) -> Result<BSTR>
fn SetAttribute( &self, reserved: *const c_void, name: &PCWSTR, value: &PCWSTR, ) -> Result<()>
fn GetFlags(&self) -> Result<u32>
fn SetFlags(&self, flags: u32) -> 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.