pub unsafe trait NSAccessibilityElementLoading: NSObjectProtocol {
    // Provided methods
    unsafe fn accessibilityElementWithToken(
        &self,
        token: &NSAccessibilityLoadingToken
    ) -> Option<Id<ProtocolObject<dyn NSAccessibilityElementProtocol>>>
       where Self: Sized + Message { ... }
    unsafe fn accessibilityRangeInTargetElementWithToken(
        &self,
        token: &NSAccessibilityLoadingToken
    ) -> NSRange
       where Self: Sized + Message { ... }
}
Available on crate feature NSAccessibilityProtocols only.

Provided Methods§

source

unsafe fn accessibilityElementWithToken( &self, token: &NSAccessibilityLoadingToken ) -> Option<Id<ProtocolObject<dyn NSAccessibilityElementProtocol>>>
where Self: Sized + Message,

Available on crate feature NSAccessibilityConstants only.
source

unsafe fn accessibilityRangeInTargetElementWithToken( &self, token: &NSAccessibilityLoadingToken ) -> NSRange
where Self: Sized + Message,

Available on crate feature NSAccessibilityConstants only.

Trait Implementations§

source§

impl ProtocolType for dyn NSAccessibilityElementLoading

source§

const NAME: &'static str = "NSAccessibilityElementLoading"

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 NSAccessibilityElementLoading

Implementations on Foreign Types§

source§

impl<T> NSAccessibilityElementLoading for ProtocolObject<T>

Implementors§