pub unsafe trait UIAccessibilityReadingContent {
    // Provided methods
    unsafe fn accessibilityLineNumberForPoint(
        &self,
        point: CGPoint
    ) -> NSInteger
       where Self: Sized + Message { ... }
    unsafe fn accessibilityContentForLineNumber(
        &self,
        line_number: NSInteger
    ) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn accessibilityFrameForLineNumber(
        &self,
        line_number: NSInteger
    ) -> CGRect
       where Self: Sized + Message { ... }
    unsafe fn accessibilityPageContent(&self) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn accessibilityAttributedContentForLineNumber(
        &self,
        line_number: NSInteger
    ) -> Option<Retained<NSAttributedString>>
       where Self: Sized + Message { ... }
    unsafe fn accessibilityAttributedPageContent(
        &self
    ) -> Option<Retained<NSAttributedString>>
       where Self: Sized + Message { ... }
}
Available on crate feature UIAccessibility only.

Provided Methods§

Trait Implementations§

source§

impl ProtocolType for dyn UIAccessibilityReadingContent

source§

const NAME: &'static str = "UIAccessibilityReadingContent"

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 UIAccessibilityReadingContent

Implementations on Foreign Types§

source§

impl<T> UIAccessibilityReadingContent for ProtocolObject<T>

Implementors§