windows::Win32::UI::Accessibility

Trait IUIAutomationTransformPattern_Impl

pub trait IUIAutomationTransformPattern_Impl: IUnknownImpl {
    // Required methods
    fn Move(&self, x: f64, y: f64) -> Result<()>;
    fn Resize(&self, width: f64, height: f64) -> Result<()>;
    fn Rotate(&self, degrees: f64) -> Result<()>;
    fn CurrentCanMove(&self) -> Result<BOOL>;
    fn CurrentCanResize(&self) -> Result<BOOL>;
    fn CurrentCanRotate(&self) -> Result<BOOL>;
    fn CachedCanMove(&self) -> Result<BOOL>;
    fn CachedCanResize(&self) -> Result<BOOL>;
    fn CachedCanRotate(&self) -> Result<BOOL>;
}

Required Methods§

fn Move(&self, x: f64, y: f64) -> Result<()>

fn Resize(&self, width: f64, height: f64) -> Result<()>

fn Rotate(&self, degrees: f64) -> Result<()>

fn CurrentCanMove(&self) -> Result<BOOL>

fn CurrentCanResize(&self) -> Result<BOOL>

fn CurrentCanRotate(&self) -> Result<BOOL>

fn CachedCanMove(&self) -> Result<BOOL>

fn CachedCanResize(&self) -> Result<BOOL>

fn CachedCanRotate(&self) -> Result<BOOL>

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§