pub trait IFsrmCollection_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn get_Item(&self, index: i32) -> Result<VARIANT>;
    fn Count(&self) -> Result<i32>;
    fn State(&self) -> Result<FsrmCollectionState>;
    fn Cancel(&self) -> Result<()>;
    fn WaitForCompletion(&self, waitseconds: i32) -> Result<VARIANT_BOOL>;
    fn GetById(&self, id: &GUID) -> Result<VARIANT>;
}

Required Methods§

fn _NewEnum(&self) -> Result<IUnknown>

fn get_Item(&self, index: i32) -> Result<VARIANT>

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

fn State(&self) -> Result<FsrmCollectionState>

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

fn WaitForCompletion(&self, waitseconds: i32) -> Result<VARIANT_BOOL>

fn GetById(&self, id: &GUID) -> Result<VARIANT>

Object Safety§

This trait is not object safe.

Implementors§