pub trait SnapIns_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Item(&self, index: i32) -> Result<SnapIn>;
    fn Count(&self) -> Result<i32>;
    fn Add(
        &self,
        snapinnameorclsid: &BSTR,
        parentsnapin: &VARIANT,
        properties: &VARIANT
    ) -> Result<SnapIn>;
    fn Remove(&self, snapin: Option<&SnapIn>) -> Result<()>;
}

Required Methods§

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

fn Item(&self, index: i32) -> Result<SnapIn>

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

fn Add( &self, snapinnameorclsid: &BSTR, parentsnapin: &VARIANT, properties: &VARIANT ) -> Result<SnapIn>

fn Remove(&self, snapin: Option<&SnapIn>) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§