#[repr(C)]pub struct IInternetSecurityManagerVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager) -> ULONG>,
pub SetSecuritySite: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pSite: *mut IInternetSecurityMgrSite) -> HRESULT>,
pub GetSecuritySite: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, ppSite: *mut *mut IInternetSecurityMgrSite) -> HRESULT>,
pub MapUrlToZone: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, pdwZone: *mut DWORD, dwFlags: DWORD) -> HRESULT>,
pub GetSecurityId: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, pbSecurityId: *mut BYTE, pcbSecurityId: *mut DWORD, dwReserved: DWORD_PTR) -> HRESULT>,
pub ProcessUrlAction: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, dwAction: DWORD, pPolicy: *mut BYTE, cbPolicy: DWORD, pContext: *mut BYTE, cbContext: DWORD, dwFlags: DWORD, dwReserved: DWORD) -> HRESULT>,
pub QueryCustomPolicy: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, guidKey: *const GUID, ppPolicy: *mut *mut BYTE, pcbPolicy: *mut DWORD, pContext: *mut BYTE, cbContext: DWORD, dwReserved: DWORD) -> HRESULT>,
pub SetZoneMapping: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, dwZone: DWORD, lpszPattern: LPCWSTR, dwFlags: DWORD) -> HRESULT>,
pub GetZoneMappings: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, dwZone: DWORD, ppenumString: *mut *mut IEnumString, dwFlags: DWORD) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager) -> ULONG>
§SetSecuritySite: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pSite: *mut IInternetSecurityMgrSite) -> HRESULT>
§GetSecuritySite: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, ppSite: *mut *mut IInternetSecurityMgrSite) -> HRESULT>
§MapUrlToZone: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, pdwZone: *mut DWORD, dwFlags: DWORD) -> HRESULT>
§GetSecurityId: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, pbSecurityId: *mut BYTE, pcbSecurityId: *mut DWORD, dwReserved: DWORD_PTR) -> HRESULT>
§ProcessUrlAction: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, dwAction: DWORD, pPolicy: *mut BYTE, cbPolicy: DWORD, pContext: *mut BYTE, cbContext: DWORD, dwFlags: DWORD, dwReserved: DWORD) -> HRESULT>
§QueryCustomPolicy: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, pwszUrl: LPCWSTR, guidKey: *const GUID, ppPolicy: *mut *mut BYTE, pcbPolicy: *mut DWORD, pContext: *mut BYTE, cbContext: DWORD, dwReserved: DWORD) -> HRESULT>
§SetZoneMapping: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, dwZone: DWORD, lpszPattern: LPCWSTR, dwFlags: DWORD) -> HRESULT>
§GetZoneMappings: Option<unsafe extern "C" fn(This: *mut IInternetSecurityManager, dwZone: DWORD, ppenumString: *mut *mut IEnumString, dwFlags: DWORD) -> HRESULT>
Trait Implementations§
Source§impl Clone for IInternetSecurityManagerVtbl
impl Clone for IInternetSecurityManagerVtbl
Source§fn clone(&self) -> IInternetSecurityManagerVtbl
fn clone(&self) -> IInternetSecurityManagerVtbl
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IInternetSecurityManagerVtbl
impl Debug for IInternetSecurityManagerVtbl
Source§impl Ord for IInternetSecurityManagerVtbl
impl Ord for IInternetSecurityManagerVtbl
Source§fn cmp(&self, other: &IInternetSecurityManagerVtbl) -> Ordering
fn cmp(&self, other: &IInternetSecurityManagerVtbl) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IInternetSecurityManagerVtbl
impl PartialEq for IInternetSecurityManagerVtbl
Source§fn eq(&self, other: &IInternetSecurityManagerVtbl) -> bool
fn eq(&self, other: &IInternetSecurityManagerVtbl) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for IInternetSecurityManagerVtbl
impl PartialOrd for IInternetSecurityManagerVtbl
impl Copy for IInternetSecurityManagerVtbl
impl Eq for IInternetSecurityManagerVtbl
impl StructuralPartialEq for IInternetSecurityManagerVtbl
Auto Trait Implementations§
impl Freeze for IInternetSecurityManagerVtbl
impl RefUnwindSafe for IInternetSecurityManagerVtbl
impl Send for IInternetSecurityManagerVtbl
impl Sync for IInternetSecurityManagerVtbl
impl Unpin for IInternetSecurityManagerVtbl
impl UnwindSafe for IInternetSecurityManagerVtbl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more