windows::Win32::UI::Accessibility

Trait IUIAutomationDragPattern_Impl

pub trait IUIAutomationDragPattern_Impl: IUnknownImpl {
    // Required methods
    fn CurrentIsGrabbed(&self) -> Result<BOOL>;
    fn CachedIsGrabbed(&self) -> Result<BOOL>;
    fn CurrentDropEffect(&self) -> Result<BSTR>;
    fn CachedDropEffect(&self) -> Result<BSTR>;
    fn CurrentDropEffects(&self) -> Result<*mut SAFEARRAY>;
    fn CachedDropEffects(&self) -> Result<*mut SAFEARRAY>;
    fn GetCurrentGrabbedItems(&self) -> Result<IUIAutomationElementArray>;
    fn GetCachedGrabbedItems(&self) -> Result<IUIAutomationElementArray>;
}

Required Methods§

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

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

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

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

fn CurrentDropEffects(&self) -> Result<*mut SAFEARRAY>

fn CachedDropEffects(&self) -> Result<*mut SAFEARRAY>

fn GetCurrentGrabbedItems(&self) -> Result<IUIAutomationElementArray>

fn GetCachedGrabbedItems(&self) -> Result<IUIAutomationElementArray>

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§