pub trait IMbnPinManager_Impl: Sized {
    // Required methods
    fn GetPinList(&self) -> Result<*mut SAFEARRAY>;
    fn GetPin(&self, pintype: MBN_PIN_TYPE) -> Result<IMbnPin>;
    fn GetPinState(&self) -> Result<u32>;
}

Required Methods§

fn GetPinList(&self) -> Result<*mut SAFEARRAY>

fn GetPin(&self, pintype: MBN_PIN_TYPE) -> Result<IMbnPin>

fn GetPinState(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§