Trait IInternetSecurityManagerEx2_Impl
pub trait IInternetSecurityManagerEx2_Impl: IInternetSecurityManagerEx_Impl {
// Required methods
fn MapUrlToZoneEx2(
&self,
puri: Ref<'_, IUri>,
pdwzone: *mut u32,
dwflags: u32,
ppwszmappedurl: *mut PWSTR,
pdwoutflags: *mut u32,
) -> Result<()>;
fn ProcessUrlActionEx2(
&self,
puri: Ref<'_, IUri>,
dwaction: u32,
ppolicy: *mut u8,
cbpolicy: u32,
pcontext: *const u8,
cbcontext: u32,
dwflags: u32,
dwreserved: usize,
pdwoutflags: *mut u32,
) -> Result<()>;
fn GetSecurityIdEx2(
&self,
puri: Ref<'_, IUri>,
pbsecurityid: *mut u8,
pcbsecurityid: *mut u32,
dwreserved: usize,
) -> Result<()>;
fn QueryCustomPolicyEx2(
&self,
puri: Ref<'_, IUri>,
guidkey: *const GUID,
pppolicy: *mut *mut u8,
pcbpolicy: *mut u32,
pcontext: *const u8,
cbcontext: u32,
dwreserved: usize,
) -> Result<()>;
}
Required Methods§
fn MapUrlToZoneEx2( &self, puri: Ref<'_, IUri>, pdwzone: *mut u32, dwflags: u32, ppwszmappedurl: *mut PWSTR, pdwoutflags: *mut u32, ) -> Result<()>
fn ProcessUrlActionEx2( &self, puri: Ref<'_, IUri>, dwaction: u32, ppolicy: *mut u8, cbpolicy: u32, pcontext: *const u8, cbcontext: u32, dwflags: u32, dwreserved: usize, pdwoutflags: *mut u32, ) -> Result<()>
fn GetSecurityIdEx2( &self, puri: Ref<'_, IUri>, pbsecurityid: *mut u8, pcbsecurityid: *mut u32, dwreserved: usize, ) -> Result<()>
fn QueryCustomPolicyEx2( &self, puri: Ref<'_, IUri>, guidkey: *const GUID, pppolicy: *mut *mut u8, pcbpolicy: *mut u32, pcontext: *const u8, cbcontext: u32, dwreserved: usize, ) -> 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.