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