Trait IMSMQDestination_Impl
pub trait IMSMQDestination_Impl: IDispatch_Impl {
Show 14 methods
// Required methods
fn Open(&self) -> Result<()>;
fn Close(&self) -> Result<()>;
fn IsOpen(&self) -> Result<VARIANT_BOOL>;
fn IADs(&self) -> Result<IDispatch>;
fn putref_IADs(&self, piads: Ref<'_, IDispatch>) -> Result<()>;
fn ADsPath(&self) -> Result<BSTR>;
fn SetADsPath(&self, bstradspath: &BSTR) -> Result<()>;
fn PathName(&self) -> Result<BSTR>;
fn SetPathName(&self, bstrpathname: &BSTR) -> Result<()>;
fn FormatName(&self) -> Result<BSTR>;
fn SetFormatName(&self, bstrformatname: &BSTR) -> Result<()>;
fn Destinations(&self) -> Result<IDispatch>;
fn putref_Destinations(
&self,
pdestinations: Ref<'_, IDispatch>,
) -> Result<()>;
fn Properties(&self) -> Result<IDispatch>;
}
Required Methods§
fn Open(&self) -> Result<()>
fn Close(&self) -> Result<()>
fn IsOpen(&self) -> Result<VARIANT_BOOL>
fn IADs(&self) -> Result<IDispatch>
fn putref_IADs(&self, piads: Ref<'_, IDispatch>) -> Result<()>
fn ADsPath(&self) -> Result<BSTR>
fn SetADsPath(&self, bstradspath: &BSTR) -> Result<()>
fn PathName(&self) -> Result<BSTR>
fn SetPathName(&self, bstrpathname: &BSTR) -> Result<()>
fn FormatName(&self) -> Result<BSTR>
fn SetFormatName(&self, bstrformatname: &BSTR) -> Result<()>
fn Destinations(&self) -> Result<IDispatch>
fn putref_Destinations(&self, pdestinations: Ref<'_, IDispatch>) -> Result<()>
fn Properties(&self) -> Result<IDispatch>
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.