Trait IMbnConnectionProfileManager_Impl
pub trait IMbnConnectionProfileManager_Impl: IUnknownImpl {
// Required methods
fn GetConnectionProfiles(
&self,
mbninterface: Ref<'_, IMbnInterface>,
) -> Result<*mut SAFEARRAY>;
fn GetConnectionProfile(
&self,
mbninterface: Ref<'_, IMbnInterface>,
profilename: &PCWSTR,
) -> Result<IMbnConnectionProfile>;
fn CreateConnectionProfile(&self, xmlprofile: &PCWSTR) -> Result<()>;
}
Required Methods§
fn GetConnectionProfiles( &self, mbninterface: Ref<'_, IMbnInterface>, ) -> Result<*mut SAFEARRAY>
fn GetConnectionProfile( &self, mbninterface: Ref<'_, IMbnInterface>, profilename: &PCWSTR, ) -> Result<IMbnConnectionProfile>
fn CreateConnectionProfile(&self, xmlprofile: &PCWSTR) -> 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.