#[repr(C)]
pub struct IWinHttpRequest_Vtbl {
Show 20 fields pub base__: IDispatch_Vtbl, pub SetProxy: unsafe extern "system" fn(_: *mut c_void, _: i32, _: MaybeUninit<VARIANT>, _: MaybeUninit<VARIANT>) -> HRESULT, pub SetCredentials: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: MaybeUninit<BSTR>, _: i32) -> HRESULT, pub Open: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: MaybeUninit<BSTR>, _: MaybeUninit<VARIANT>) -> HRESULT, pub SetRequestHeader: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: MaybeUninit<BSTR>) -> HRESULT, pub GetResponseHeader: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub GetAllResponseHeaders: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub Send: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<VARIANT>) -> HRESULT, pub Status: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT, pub StatusText: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub ResponseText: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub ResponseBody: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT, pub ResponseStream: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT, pub get_Option: unsafe extern "system" fn(_: *mut c_void, _: WinHttpRequestOption, _: *mut MaybeUninit<VARIANT>) -> HRESULT, pub put_Option: unsafe extern "system" fn(_: *mut c_void, _: WinHttpRequestOption, _: MaybeUninit<VARIANT>) -> HRESULT, pub WaitForResponse: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<VARIANT>, _: *mut VARIANT_BOOL) -> HRESULT, pub Abort: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetTimeouts: unsafe extern "system" fn(_: *mut c_void, _: i32, _: i32, _: i32, _: i32) -> HRESULT, pub SetClientCertificate: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT, pub SetAutoLogonPolicy: unsafe extern "system" fn(_: *mut c_void, _: WinHttpRequestAutoLogonPolicy) -> HRESULT,
}

Fields§

§base__: IDispatch_Vtbl§SetProxy: unsafe extern "system" fn(_: *mut c_void, _: i32, _: MaybeUninit<VARIANT>, _: MaybeUninit<VARIANT>) -> HRESULT§SetCredentials: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: MaybeUninit<BSTR>, _: i32) -> HRESULT§Open: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: MaybeUninit<BSTR>, _: MaybeUninit<VARIANT>) -> HRESULT§SetRequestHeader: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: MaybeUninit<BSTR>) -> HRESULT§GetResponseHeader: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>, _: *mut MaybeUninit<BSTR>) -> HRESULT§GetAllResponseHeaders: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§Send: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<VARIANT>) -> HRESULT§Status: unsafe extern "system" fn(_: *mut c_void, _: *mut i32) -> HRESULT§StatusText: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§ResponseText: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§ResponseBody: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT§ResponseStream: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT§get_Option: unsafe extern "system" fn(_: *mut c_void, _: WinHttpRequestOption, _: *mut MaybeUninit<VARIANT>) -> HRESULT§put_Option: unsafe extern "system" fn(_: *mut c_void, _: WinHttpRequestOption, _: MaybeUninit<VARIANT>) -> HRESULT§WaitForResponse: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<VARIANT>, _: *mut VARIANT_BOOL) -> HRESULT§Abort: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetTimeouts: unsafe extern "system" fn(_: *mut c_void, _: i32, _: i32, _: i32, _: i32) -> HRESULT§SetClientCertificate: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT§SetAutoLogonPolicy: unsafe extern "system" fn(_: *mut c_void, _: WinHttpRequestAutoLogonPolicy) -> HRESULT

Implementations§

§

impl IWinHttpRequest_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IWinHttpRequest_Impl, const OFFSET: isize>( ) -> IWinHttpRequest_Vtbl

pub fn matches(iid: &GUID) -> bool

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.