windows::UI::Input

Trait IPointerPointTransform_Impl

pub trait IPointerPointTransform_Impl: IUnknownImpl {
    // Required methods
    fn Inverse(&self) -> Result<IPointerPointTransform>;
    fn TryTransform(
        &self,
        inPoint: &Point,
        outPoint: &mut Point,
    ) -> Result<bool>;
    fn TransformBounds(&self, rect: &Rect) -> Result<Rect>;
}

Required Methods§

fn Inverse(&self) -> Result<IPointerPointTransform>

fn TryTransform(&self, inPoint: &Point, outPoint: &mut Point) -> Result<bool>

fn TransformBounds(&self, rect: &Rect) -> Result<Rect>

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§