#[repr(C)]pub struct IHttpNegotiateVtbl {
pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate) -> ULONG>,
pub Release: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate) -> ULONG>,
pub BeginningTransaction: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate, szURL: LPCWSTR, szHeaders: LPCWSTR, dwReserved: DWORD, pszAdditionalHeaders: *mut LPWSTR) -> HRESULT>,
pub OnResponse: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate, dwResponseCode: DWORD, szResponseHeaders: LPCWSTR, szRequestHeaders: LPCWSTR, pszAdditionalRequestHeaders: *mut LPWSTR) -> HRESULT>,
}
Fields§
§QueryInterface: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>
§AddRef: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate) -> ULONG>
§Release: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate) -> ULONG>
§BeginningTransaction: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate, szURL: LPCWSTR, szHeaders: LPCWSTR, dwReserved: DWORD, pszAdditionalHeaders: *mut LPWSTR) -> HRESULT>
§OnResponse: Option<unsafe extern "C" fn(This: *mut IHttpNegotiate, dwResponseCode: DWORD, szResponseHeaders: LPCWSTR, szRequestHeaders: LPCWSTR, pszAdditionalRequestHeaders: *mut LPWSTR) -> HRESULT>
Trait Implementations§
Source§impl Clone for IHttpNegotiateVtbl
impl Clone for IHttpNegotiateVtbl
Source§fn clone(&self) -> IHttpNegotiateVtbl
fn clone(&self) -> IHttpNegotiateVtbl
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 IHttpNegotiateVtbl
impl Debug for IHttpNegotiateVtbl
Source§impl Ord for IHttpNegotiateVtbl
impl Ord for IHttpNegotiateVtbl
Source§fn cmp(&self, other: &IHttpNegotiateVtbl) -> Ordering
fn cmp(&self, other: &IHttpNegotiateVtbl) -> 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 IHttpNegotiateVtbl
impl PartialEq for IHttpNegotiateVtbl
Source§impl PartialOrd for IHttpNegotiateVtbl
impl PartialOrd for IHttpNegotiateVtbl
impl Copy for IHttpNegotiateVtbl
impl Eq for IHttpNegotiateVtbl
impl StructuralPartialEq for IHttpNegotiateVtbl
Auto Trait Implementations§
impl Freeze for IHttpNegotiateVtbl
impl RefUnwindSafe for IHttpNegotiateVtbl
impl Send for IHttpNegotiateVtbl
impl Sync for IHttpNegotiateVtbl
impl Unpin for IHttpNegotiateVtbl
impl UnwindSafe for IHttpNegotiateVtbl
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