Trait IDataCollectorSetCollection_Impl
pub trait IDataCollectorSetCollection_Impl: IDispatch_Impl {
// Required methods
fn Count(&self) -> Result<i32>;
fn get_Item(&self, index: &VARIANT) -> Result<IDataCollectorSet>;
fn _NewEnum(&self) -> Result<IUnknown>;
fn Add(&self, set: Ref<'_, IDataCollectorSet>) -> Result<()>;
fn Remove(&self, set: &VARIANT) -> Result<()>;
fn Clear(&self) -> Result<()>;
fn AddRange(&self, sets: Ref<'_, IDataCollectorSetCollection>) -> Result<()>;
fn GetDataCollectorSets(&self, server: &BSTR, filter: &BSTR) -> Result<()>;
}
Required Methods§
fn Count(&self) -> Result<i32>
fn get_Item(&self, index: &VARIANT) -> Result<IDataCollectorSet>
fn _NewEnum(&self) -> Result<IUnknown>
fn Add(&self, set: Ref<'_, IDataCollectorSet>) -> Result<()>
fn Remove(&self, set: &VARIANT) -> Result<()>
fn Clear(&self) -> Result<()>
fn AddRange(&self, sets: Ref<'_, IDataCollectorSetCollection>) -> Result<()>
fn GetDataCollectorSets(&self, server: &BSTR, filter: &BSTR) -> Result<()>
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.