windows::UI::Input::Inking::Analysis

Trait IInkAnalysisNode_Impl

pub trait IInkAnalysisNode_Impl: IUnknownImpl {
    // Required methods
    fn Id(&self) -> Result<u32>;
    fn Kind(&self) -> Result<InkAnalysisNodeKind>;
    fn BoundingRect(&self) -> Result<Rect>;
    fn RotatedBoundingRect(&self) -> Result<IVectorView<Point>>;
    fn Children(&self) -> Result<IVectorView<IInkAnalysisNode>>;
    fn Parent(&self) -> Result<IInkAnalysisNode>;
    fn GetStrokeIds(&self) -> Result<IVectorView<u32>>;
}

Required Methods§

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

fn Kind(&self) -> Result<InkAnalysisNodeKind>

fn BoundingRect(&self) -> Result<Rect>

fn RotatedBoundingRect(&self) -> Result<IVectorView<Point>>

fn Children(&self) -> Result<IVectorView<IInkAnalysisNode>>

fn Parent(&self) -> Result<IInkAnalysisNode>

fn GetStrokeIds(&self) -> Result<IVectorView<u32>>

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§