#[repr(C)]pub struct IServerSecurityVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IServerSecurity, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> ULONG>,
pub QueryBlanket: Option<unsafe extern "C" fn(This: *mut IServerSecurity, pAuthnSvc: *mut DWORD, pAuthzSvc: *mut DWORD, pServerPrincName: *mut *mut OLECHAR, pAuthnLevel: *mut DWORD, pImpLevel: *mut DWORD, pPrivs: *mut *mut c_void, pCapabilities: *mut DWORD) -> HRESULT>,
pub ImpersonateClient: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> HRESULT>,
pub RevertToSelf: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> HRESULT>,
pub IsImpersonating: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> BOOL>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IServerSecurity, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> ULONG>
§QueryBlanket: Option<unsafe extern "C" fn(This: *mut IServerSecurity, pAuthnSvc: *mut DWORD, pAuthzSvc: *mut DWORD, pServerPrincName: *mut *mut OLECHAR, pAuthnLevel: *mut DWORD, pImpLevel: *mut DWORD, pPrivs: *mut *mut c_void, pCapabilities: *mut DWORD) -> HRESULT>
§ImpersonateClient: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> HRESULT>
§RevertToSelf: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> HRESULT>
§IsImpersonating: Option<unsafe extern "C" fn(This: *mut IServerSecurity) -> BOOL>
Trait Implementations§
Source§impl Clone for IServerSecurityVtbl
impl Clone for IServerSecurityVtbl
Source§fn clone(&self) -> IServerSecurityVtbl
fn clone(&self) -> IServerSecurityVtbl
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 IServerSecurityVtbl
impl Debug for IServerSecurityVtbl
Source§impl Ord for IServerSecurityVtbl
impl Ord for IServerSecurityVtbl
Source§fn cmp(&self, other: &IServerSecurityVtbl) -> Ordering
fn cmp(&self, other: &IServerSecurityVtbl) -> 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 IServerSecurityVtbl
impl PartialEq for IServerSecurityVtbl
Source§impl PartialOrd for IServerSecurityVtbl
impl PartialOrd for IServerSecurityVtbl
impl Copy for IServerSecurityVtbl
impl Eq for IServerSecurityVtbl
impl StructuralPartialEq for IServerSecurityVtbl
Auto Trait Implementations§
impl Freeze for IServerSecurityVtbl
impl RefUnwindSafe for IServerSecurityVtbl
impl Send for IServerSecurityVtbl
impl Sync for IServerSecurityVtbl
impl Unpin for IServerSecurityVtbl
impl UnwindSafe for IServerSecurityVtbl
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