pub trait IFaxActivityLogging_Impl: Sized + 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<()>

Object Safety§

This trait is not object safe.

Implementors§