pub trait IFsrmMutableCollection_Impl: Sized + IFsrmCollection_Impl {
// Required methods
fn Add(&self, item: &VARIANT) -> Result<()>;
fn Remove(&self, index: i32) -> Result<()>;
fn RemoveById(&self, id: &GUID) -> Result<()>;
fn Clone(&self) -> Result<IFsrmMutableCollection>;
}
Required Methods§
fn Add(&self, item: &VARIANT) -> Result<()>
fn Remove(&self, index: i32) -> Result<()>
fn RemoveById(&self, id: &GUID) -> Result<()>
fn Clone(&self) -> Result<IFsrmMutableCollection>
Object Safety§
This trait is not object safe.