#[repr(C)]pub struct IInternetHostSecurityManagerVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager) -> ULONG>,
pub GetSecurityId: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager, pbSecurityId: *mut BYTE, pcbSecurityId: *mut DWORD, dwReserved: DWORD_PTR) -> HRESULT>,
pub ProcessUrlAction: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager, 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 IInternetHostSecurityManager, guidKey: *const GUID, ppPolicy: *mut *mut BYTE, pcbPolicy: *mut DWORD, pContext: *mut BYTE, cbContext: DWORD, dwReserved: DWORD) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager) -> ULONG>
§GetSecurityId: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager, pbSecurityId: *mut BYTE, pcbSecurityId: *mut DWORD, dwReserved: DWORD_PTR) -> HRESULT>
§ProcessUrlAction: Option<unsafe extern "C" fn(This: *mut IInternetHostSecurityManager, 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 IInternetHostSecurityManager, guidKey: *const GUID, ppPolicy: *mut *mut BYTE, pcbPolicy: *mut DWORD, pContext: *mut BYTE, cbContext: DWORD, dwReserved: DWORD) -> HRESULT>
Trait Implementations§
Source§impl Clone for IInternetHostSecurityManagerVtbl
impl Clone for IInternetHostSecurityManagerVtbl
Source§fn clone(&self) -> IInternetHostSecurityManagerVtbl
fn clone(&self) -> IInternetHostSecurityManagerVtbl
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 Ord for IInternetHostSecurityManagerVtbl
impl Ord for IInternetHostSecurityManagerVtbl
Source§fn cmp(&self, other: &IInternetHostSecurityManagerVtbl) -> Ordering
fn cmp(&self, other: &IInternetHostSecurityManagerVtbl) -> 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 IInternetHostSecurityManagerVtbl
impl PartialEq for IInternetHostSecurityManagerVtbl
Source§fn eq(&self, other: &IInternetHostSecurityManagerVtbl) -> bool
fn eq(&self, other: &IInternetHostSecurityManagerVtbl) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for IInternetHostSecurityManagerVtbl
impl PartialOrd for IInternetHostSecurityManagerVtbl
impl Copy for IInternetHostSecurityManagerVtbl
impl Eq for IInternetHostSecurityManagerVtbl
impl StructuralPartialEq for IInternetHostSecurityManagerVtbl
Auto Trait Implementations§
impl Freeze for IInternetHostSecurityManagerVtbl
impl RefUnwindSafe for IInternetHostSecurityManagerVtbl
impl Send for IInternetHostSecurityManagerVtbl
impl Sync for IInternetHostSecurityManagerVtbl
impl Unpin for IInternetHostSecurityManagerVtbl
impl UnwindSafe for IInternetHostSecurityManagerVtbl
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