windows::Win32::UI::TabletPC

Trait IInkCursor_Impl

pub trait IInkCursor_Impl: IDispatch_Impl {
    // Required methods
    fn Name(&self) -> Result<BSTR>;
    fn Id(&self) -> Result<i32>;
    fn Inverted(&self) -> Result<VARIANT_BOOL>;
    fn DrawingAttributes(&self) -> Result<IInkDrawingAttributes>;
    fn putref_DrawingAttributes(
        &self,
        attributes: Ref<'_, IInkDrawingAttributes>,
    ) -> Result<()>;
    fn Tablet(&self) -> Result<IInkTablet>;
    fn Buttons(&self) -> Result<IInkCursorButtons>;
}

Required Methods§

fn Name(&self) -> Result<BSTR>

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

fn Inverted(&self) -> Result<VARIANT_BOOL>

fn DrawingAttributes(&self) -> Result<IInkDrawingAttributes>

fn putref_DrawingAttributes( &self, attributes: Ref<'_, IInkDrawingAttributes>, ) -> Result<()>

fn Tablet(&self) -> Result<IInkTablet>

fn Buttons(&self) -> Result<IInkCursorButtons>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§