pub trait IDiskQuotaUserBatch_Impl: Sized {
    // Required methods
    fn Add(&self, puser: Option<&IDiskQuotaUser>) -> Result<()>;
    fn Remove(&self, puser: Option<&IDiskQuotaUser>) -> Result<()>;
    fn RemoveAll(&self) -> Result<()>;
    fn FlushToDisk(&self) -> Result<()>;
}

Required Methods§

fn Add(&self, puser: Option<&IDiskQuotaUser>) -> Result<()>

fn Remove(&self, puser: Option<&IDiskQuotaUser>) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§