Trait IFaxActivityLogging_Impl
pub trait IFaxActivityLogging_Impl: IDispatch_Impl {
// Required methods
fn LogIncoming(&self) -> Result<VARIANT_BOOL>;
fn SetLogIncoming(&self, blogincoming: VARIANT_BOOL) -> Result<()>;
fn LogOutgoing(&self) -> Result<VARIANT_BOOL>;
fn SetLogOutgoing(&self, blogoutgoing: VARIANT_BOOL) -> Result<()>;
fn DatabasePath(&self) -> Result<BSTR>;
fn SetDatabasePath(&self, bstrdatabasepath: &BSTR) -> Result<()>;
fn Refresh(&self) -> Result<()>;
fn Save(&self) -> Result<()>;
}
Required Methods§
fn LogIncoming(&self) -> Result<VARIANT_BOOL>
fn SetLogIncoming(&self, blogincoming: VARIANT_BOOL) -> Result<()>
fn LogOutgoing(&self) -> Result<VARIANT_BOOL>
fn SetLogOutgoing(&self, blogoutgoing: VARIANT_BOOL) -> Result<()>
fn DatabasePath(&self) -> Result<BSTR>
fn SetDatabasePath(&self, bstrdatabasepath: &BSTR) -> Result<()>
fn Refresh(&self) -> Result<()>
fn Save(&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.