Trait IWMAddressAccess2_Impl
pub trait IWMAddressAccess2_Impl: IWMAddressAccess_Impl {
// Required methods
fn GetAccessEntryEx(
&self,
aetype: WM_AETYPE,
dwentrynum: u32,
pbstraddress: *mut BSTR,
pbstrmask: *mut BSTR,
) -> Result<()>;
fn AddAccessEntryEx(
&self,
aetype: WM_AETYPE,
bstraddress: &BSTR,
bstrmask: &BSTR,
) -> Result<()>;
}
Required Methods§
fn GetAccessEntryEx( &self, aetype: WM_AETYPE, dwentrynum: u32, pbstraddress: *mut BSTR, pbstrmask: *mut BSTR, ) -> Result<()>
fn AddAccessEntryEx( &self, aetype: WM_AETYPE, bstraddress: &BSTR, bstrmask: &BSTR, ) -> 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.