pub trait IMtsGrp_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Count(&self) -> Result<i32>;
    fn Item(&self, lindex: i32) -> Result<IUnknown>;
    fn Refresh(&self) -> Result<()>;
}

Required Methods§

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

fn Item(&self, lindex: i32) -> Result<IUnknown>

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

Object Safety§

This trait is not object safe.

Implementors§