pub unsafe trait UITableViewDataSourcePrefetching: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn tableView_prefetchRowsAtIndexPaths(
        &self,
        table_view: &UITableView,
        index_paths: &NSArray<NSIndexPath>
    )
       where Self: Sized + Message { ... }
    unsafe fn tableView_cancelPrefetchingForRowsAtIndexPaths(
        &self,
        table_view: &UITableView,
        index_paths: &NSArray<NSIndexPath>
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UITableView only.

Provided Methods§

source

unsafe fn tableView_prefetchRowsAtIndexPaths( &self, table_view: &UITableView, index_paths: &NSArray<NSIndexPath> )
where Self: Sized + Message,

Available on crate features UIResponder and UIScrollView and UIView only.
source

unsafe fn tableView_cancelPrefetchingForRowsAtIndexPaths( &self, table_view: &UITableView, index_paths: &NSArray<NSIndexPath> )
where Self: Sized + Message,

Available on crate features UIResponder and UIScrollView and UIView only.

Trait Implementations§

source§

impl ProtocolType for dyn UITableViewDataSourcePrefetching

source§

const NAME: &'static str = "UITableViewDataSourcePrefetching"

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 UITableViewDataSourcePrefetching

Implementations on Foreign Types§

source§

impl<T> UITableViewDataSourcePrefetching for ProtocolObject<T>

Implementors§