Trait IFaxAccountSet_Impl
pub trait IFaxAccountSet_Impl: IDispatch_Impl {
// Required methods
fn GetAccounts(&self) -> Result<IFaxAccounts>;
fn GetAccount(&self, bstraccountname: &BSTR) -> Result<IFaxAccount>;
fn AddAccount(&self, bstraccountname: &BSTR) -> Result<IFaxAccount>;
fn RemoveAccount(&self, bstraccountname: &BSTR) -> Result<()>;
}
Required Methods§
fn GetAccounts(&self) -> Result<IFaxAccounts>
fn GetAccount(&self, bstraccountname: &BSTR) -> Result<IFaxAccount>
fn AddAccount(&self, bstraccountname: &BSTR) -> Result<IFaxAccount>
fn RemoveAccount(&self, bstraccountname: &BSTR) -> 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.