pub trait IFsrmQuotaBase_Impl: Sized + IFsrmObject_Impl {
    // Required methods
    fn QuotaLimit(&self) -> Result<VARIANT>;
    fn SetQuotaLimit(&self, quotalimit: &VARIANT) -> Result<()>;
    fn QuotaFlags(&self) -> Result<i32>;
    fn SetQuotaFlags(&self, quotaflags: i32) -> Result<()>;
    fn Thresholds(&self) -> Result<*mut SAFEARRAY>;
    fn AddThreshold(&self, threshold: i32) -> Result<()>;
    fn DeleteThreshold(&self, threshold: i32) -> Result<()>;
    fn ModifyThreshold(&self, threshold: i32, newthreshold: i32) -> Result<()>;
    fn CreateThresholdAction(
        &self,
        threshold: i32,
        actiontype: FsrmActionType
    ) -> Result<IFsrmAction>;
    fn EnumThresholdActions(&self, threshold: i32) -> Result<IFsrmCollection>;
}

Required Methods§

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

fn SetQuotaLimit(&self, quotalimit: &VARIANT) -> Result<()>

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

fn SetQuotaFlags(&self, quotaflags: i32) -> Result<()>

fn Thresholds(&self) -> Result<*mut SAFEARRAY>

fn AddThreshold(&self, threshold: i32) -> Result<()>

fn DeleteThreshold(&self, threshold: i32) -> Result<()>

fn ModifyThreshold(&self, threshold: i32, newthreshold: i32) -> Result<()>

fn CreateThresholdAction( &self, threshold: i32, actiontype: FsrmActionType ) -> Result<IFsrmAction>

fn EnumThresholdActions(&self, threshold: i32) -> Result<IFsrmCollection>

Object Safety§

This trait is not object safe.

Implementors§