#[repr(C)]pub struct IAuthenticateVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IAuthenticate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IAuthenticate) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IAuthenticate) -> ULONG>,
pub Authenticate: Option<unsafe extern "C" fn(This: *mut IAuthenticate, phwnd: *mut HWND, pszUsername: *mut LPWSTR, pszPassword: *mut LPWSTR) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IAuthenticate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IAuthenticate) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IAuthenticate) -> ULONG>
§Authenticate: Option<unsafe extern "C" fn(This: *mut IAuthenticate, phwnd: *mut HWND, pszUsername: *mut LPWSTR, pszPassword: *mut LPWSTR) -> HRESULT>
Trait Implementations§
Source§impl Clone for IAuthenticateVtbl
impl Clone for IAuthenticateVtbl
Source§fn clone(&self) -> IAuthenticateVtbl
fn clone(&self) -> IAuthenticateVtbl
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 IAuthenticateVtbl
impl Debug for IAuthenticateVtbl
Source§impl Ord for IAuthenticateVtbl
impl Ord for IAuthenticateVtbl
Source§fn cmp(&self, other: &IAuthenticateVtbl) -> Ordering
fn cmp(&self, other: &IAuthenticateVtbl) -> 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 IAuthenticateVtbl
impl PartialEq for IAuthenticateVtbl
Source§impl PartialOrd for IAuthenticateVtbl
impl PartialOrd for IAuthenticateVtbl
impl Copy for IAuthenticateVtbl
impl Eq for IAuthenticateVtbl
impl StructuralPartialEq for IAuthenticateVtbl
Auto Trait Implementations§
impl Freeze for IAuthenticateVtbl
impl RefUnwindSafe for IAuthenticateVtbl
impl Send for IAuthenticateVtbl
impl Sync for IAuthenticateVtbl
impl Unpin for IAuthenticateVtbl
impl UnwindSafe for IAuthenticateVtbl
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