#[repr(C)]pub struct IHttpNegotiateVtbl {
pub QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
pub AddRef: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate) -> ULONG>,
pub Release: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate) -> ULONG>,
pub BeginningTransaction: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate, szURL: LPCWSTR, szHeaders: LPCWSTR, dwReserved: DWORD, pszAdditionalHeaders: *mut LPWSTR) -> HRESULT>,
pub OnResponse: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate, dwResponseCode: DWORD, szResponseHeaders: LPCWSTR, szRequestHeaders: LPCWSTR, pszAdditionalRequestHeaders: *mut LPWSTR) -> HRESULT>,
}Fields§
§QueryInterface: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>§AddRef: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate) -> ULONG>§Release: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate) -> ULONG>§BeginningTransaction: Option<unsafe extern "stdcall" fn(This: *mut IHttpNegotiate, szURL: LPCWSTR, szHeaders: LPCWSTR, dwReserved: DWORD, pszAdditionalHeaders: *mut LPWSTR) -> HRESULT>§OnResponse: Option<unsafe extern "stdcall" 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 duplicate 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 moreimpl Copy 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