pub unsafe trait UIAccessibilityIdentification: NSObjectProtocol {
    // Provided methods
    unsafe fn accessibilityIdentifier(&self) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn setAccessibilityIdentifier(
        &self,
        accessibility_identifier: Option<&NSString>
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UIAccessibilityIdentification only.

Provided Methods§

source

unsafe fn accessibilityIdentifier(&self) -> Option<Retained<NSString>>
where Self: Sized + Message,

source

unsafe fn setAccessibilityIdentifier( &self, accessibility_identifier: Option<&NSString> )
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn UIAccessibilityIdentification

source§

const NAME: &'static str = "UIAccessibilityIdentification"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn UIAccessibilityIdentification

Implementations on Foreign Types§

source§

impl<T> UIAccessibilityIdentification for ProtocolObject<T>

Implementors§

source§

impl UIAccessibilityIdentification for UIAccessibilityElement

Available on crate features UIResponder and UIAccessibilityElement only.
source§

impl UIAccessibilityIdentification for UIAlertAction

Available on crate feature UIAlertController only.
source§

impl UIAccessibilityIdentification for UIBarItem

Available on crate feature UIBarItem only.
source§

impl UIAccessibilityIdentification for UIImage

Available on crate feature UIImage only.
source§

impl UIAccessibilityIdentification for UIMenuElement

Available on crate feature UIMenuElement only.
source§

impl UIAccessibilityIdentification for UIView

Available on crate features UIResponder and UIView only.