pub unsafe trait NSObjectUIAccessibilityAction: ClassType {
    // Provided methods
    unsafe fn accessibilityActivate(&self) -> bool
       where Self: Sized + Message { ... }
    unsafe fn accessibilityIncrement(&self)
       where Self: Sized + Message { ... }
    unsafe fn accessibilityDecrement(&self)
       where Self: Sized + Message { ... }
    unsafe fn accessibilityZoomInAtPoint(&self, point: CGPoint) -> bool
       where Self: Sized + Message { ... }
    unsafe fn accessibilityZoomOutAtPoint(&self, point: CGPoint) -> bool
       where Self: Sized + Message { ... }
    unsafe fn accessibilityScroll(
        &self,
        direction: UIAccessibilityScrollDirection
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn accessibilityPerformEscape(&self) -> bool
       where Self: Sized + Message { ... }
    unsafe fn accessibilityPerformMagicTap(&self) -> bool
       where Self: Sized + Message { ... }
    unsafe fn accessibilityCustomActions(
        &self
    ) -> Option<Retained<NSArray<UIAccessibilityCustomAction>>>
       where Self: Sized + Message { ... }
    unsafe fn setAccessibilityCustomActions(
        &self,
        accessibility_custom_actions: Option<&NSArray<UIAccessibilityCustomAction>>
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UIAccessibility only.
Expand description

Category “UIAccessibilityAction” on NSObject.

Provided Methods§

source

unsafe fn accessibilityActivate(&self) -> bool
where Self: Sized + Message,

source

unsafe fn accessibilityIncrement(&self)
where Self: Sized + Message,

source

unsafe fn accessibilityDecrement(&self)
where Self: Sized + Message,

source

unsafe fn accessibilityZoomInAtPoint(&self, point: CGPoint) -> bool
where Self: Sized + Message,

source

unsafe fn accessibilityZoomOutAtPoint(&self, point: CGPoint) -> bool
where Self: Sized + Message,

source

unsafe fn accessibilityScroll( &self, direction: UIAccessibilityScrollDirection ) -> bool
where Self: Sized + Message,

source

unsafe fn accessibilityPerformEscape(&self) -> bool
where Self: Sized + Message,

source

unsafe fn accessibilityPerformMagicTap(&self) -> bool
where Self: Sized + Message,

source

unsafe fn accessibilityCustomActions( &self ) -> Option<Retained<NSArray<UIAccessibilityCustomAction>>>
where Self: Sized + Message,

Available on crate feature UIAccessibilityCustomAction only.
source

unsafe fn setAccessibilityCustomActions( &self, accessibility_custom_actions: Option<&NSArray<UIAccessibilityCustomAction>> )
where Self: Sized + Message,

Available on crate feature UIAccessibilityCustomAction only.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl NSObjectUIAccessibilityAction for NSObject

Implementors§