pub trait IMbnConnectionProfile_Impl: Sized {
    // Required methods
    fn GetProfileXmlData(&self) -> Result<BSTR>;
    fn UpdateProfile(&self, strprofile: &PCWSTR) -> Result<()>;
    fn Delete(&self) -> Result<()>;
}

Required Methods§

fn GetProfileXmlData(&self) -> Result<BSTR>

fn UpdateProfile(&self, strprofile: &PCWSTR) -> Result<()>

fn Delete(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§