pub trait IFaxSecurity2_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Descriptor(&self) -> Result<VARIANT>;
    fn SetDescriptor(&self, vdescriptor: &VARIANT) -> Result<()>;
    fn GrantedRights(&self) -> Result<FAX_ACCESS_RIGHTS_ENUM_2>;
    fn Refresh(&self) -> Result<()>;
    fn Save(&self) -> Result<()>;
    fn InformationType(&self) -> Result<i32>;
    fn SetInformationType(&self, linformationtype: i32) -> Result<()>;
}

Required Methods§

fn Descriptor(&self) -> Result<VARIANT>

fn SetDescriptor(&self, vdescriptor: &VARIANT) -> Result<()>

fn GrantedRights(&self) -> Result<FAX_ACCESS_RIGHTS_ENUM_2>

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

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

fn InformationType(&self) -> Result<i32>

fn SetInformationType(&self, linformationtype: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§