windows::Win32::Networking::WinHttp

Trait IWinHttpRequestEvents_Impl

pub trait IWinHttpRequestEvents_Impl: IUnknownImpl {
    // Required methods
    fn OnResponseStart(&self, status: i32, contenttype: &BSTR);
    fn OnResponseDataAvailable(&self, data: *const *const SAFEARRAY);
    fn OnResponseFinished(&self);
    fn OnError(&self, errornumber: i32, errordescription: &BSTR);
}

Required Methods§

fn OnResponseStart(&self, status: i32, contenttype: &BSTR)

fn OnResponseDataAvailable(&self, data: *const *const SAFEARRAY)

fn OnResponseFinished(&self)

fn OnError(&self, errornumber: i32, errordescription: &BSTR)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§