pub trait IInkCursorButtons_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn Count(&self) -> Result<i32>;
    fn _NewEnum(&self) -> Result<IUnknown>;
    fn Item(&self, identifier: &VARIANT) -> Result<IInkCursorButton>;
}

Required Methods§

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

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

fn Item(&self, identifier: &VARIANT) -> Result<IInkCursorButton>

Object Safety§

This trait is not object safe.

Implementors§