Trait IMFHttpDownloadSession_Impl
pub trait IMFHttpDownloadSession_Impl: IUnknownImpl {
// Required methods
fn SetServer(&self, szservername: &PCWSTR, nport: u32) -> Result<()>;
fn CreateRequest(
&self,
szobjectname: &PCWSTR,
fbypassproxycache: BOOL,
fsecure: BOOL,
szverb: &PCWSTR,
szreferrer: &PCWSTR,
) -> Result<IMFHttpDownloadRequest>;
fn Close(&self) -> Result<()>;
}
Required Methods§
fn SetServer(&self, szservername: &PCWSTR, nport: u32) -> Result<()>
fn CreateRequest( &self, szobjectname: &PCWSTR, fbypassproxycache: BOOL, fsecure: BOOL, szverb: &PCWSTR, szreferrer: &PCWSTR, ) -> Result<IMFHttpDownloadRequest>
fn Close(&self) -> Result<()>
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.