pub unsafe trait UIScrollViewAccessibilityDelegate: UIScrollViewDelegate + MainThreadOnly {
// Provided methods
fn accessibilityScrollStatusForScrollView(
&self,
scroll_view: &UIScrollView,
) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
fn accessibilityAttributedScrollStatusForScrollView(
&self,
scroll_view: &UIScrollView,
) -> Option<Retained<NSAttributedString>>
where Self: Sized + Message { ... }
}Available on crate features
UIAccessibilityAdditions and UIScrollView only.Expand description
Provided Methods§
fn accessibilityScrollStatusForScrollView( &self, scroll_view: &UIScrollView, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder and UIView only.fn accessibilityAttributedScrollStatusForScrollView( &self, scroll_view: &UIScrollView, ) -> Option<Retained<NSAttributedString>>
Available on crate features
UIResponder and UIView only.Trait Implementations§
impl<T> ImplementedBy<T> for dyn UIScrollViewAccessibilityDelegate
Source§impl ProtocolType for dyn UIScrollViewAccessibilityDelegate
impl ProtocolType for dyn UIScrollViewAccessibilityDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".