Trait IFsrmQuotaBase_Impl
pub trait IFsrmQuotaBase_Impl: 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>
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.