Trait IWSDHttpMessageParameters_Impl
pub trait IWSDHttpMessageParameters_Impl: IWSDMessageParameters_Impl {
// Required methods
fn SetInboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>;
fn GetInboundHttpHeaders(&self) -> Result<PCWSTR>;
fn SetOutboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>;
fn GetOutboundHttpHeaders(&self) -> Result<PCWSTR>;
fn SetID(&self, pszid: &PCWSTR) -> Result<()>;
fn GetID(&self) -> Result<PCWSTR>;
fn SetContext(&self, pcontext: Ref<'_, IUnknown>) -> Result<()>;
fn GetContext(&self) -> Result<IUnknown>;
fn Clear(&self) -> Result<()>;
}
Required Methods§
fn SetInboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>
fn GetInboundHttpHeaders(&self) -> Result<PCWSTR>
fn SetOutboundHttpHeaders(&self, pszheaders: &PCWSTR) -> Result<()>
fn GetOutboundHttpHeaders(&self) -> Result<PCWSTR>
fn SetID(&self, pszid: &PCWSTR) -> Result<()>
fn GetID(&self) -> Result<PCWSTR>
fn SetContext(&self, pcontext: Ref<'_, IUnknown>) -> Result<()>
fn GetContext(&self) -> Result<IUnknown>
fn Clear(&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.