pub unsafe trait UITableViewDataSourcePrefetching: NSObjectProtocol + MainThreadOnly {
// Provided methods
fn tableView_prefetchRowsAtIndexPaths(
&self,
table_view: &UITableView,
index_paths: &NSArray<NSIndexPath>,
)
where Self: Sized + Message { ... }
fn tableView_cancelPrefetchingForRowsAtIndexPaths(
&self,
table_view: &UITableView,
index_paths: &NSArray<NSIndexPath>,
)
where Self: Sized + Message { ... }
}Available on crate feature
UITableView only.Expand description
Provided Methods§
fn tableView_prefetchRowsAtIndexPaths( &self, table_view: &UITableView, index_paths: &NSArray<NSIndexPath>, )
Available on crate features
UIResponder and UIScrollView and UIView only.fn tableView_cancelPrefetchingForRowsAtIndexPaths( &self, table_view: &UITableView, index_paths: &NSArray<NSIndexPath>, )
Available on crate features
UIResponder and UIScrollView and UIView only.Trait Implementations§
Source§impl ProtocolType for dyn UITableViewDataSourcePrefetching
impl ProtocolType for dyn UITableViewDataSourcePrefetching
impl<T> ImplementedBy<T> for dyn UITableViewDataSourcePrefetching
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".