pub enum LoadPriority {
Immediate,
High,
Normal,
Low,
}Expand description
Load priority
Variants§
Immediate
User is viewing this slice right now
High
User might view this soon (adjacent slice)
Normal
Prefetch for smooth scrolling
Low
Background loading
Trait Implementations§
Source§impl Clone for LoadPriority
impl Clone for LoadPriority
Source§fn clone(&self) -> LoadPriority
fn clone(&self) -> LoadPriority
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LoadPriority
impl Debug for LoadPriority
Source§impl PartialEq for LoadPriority
impl PartialEq for LoadPriority
impl Copy for LoadPriority
impl Eq for LoadPriority
impl StructuralPartialEq for LoadPriority
Auto Trait Implementations§
impl Freeze for LoadPriority
impl RefUnwindSafe for LoadPriority
impl Send for LoadPriority
impl Sync for LoadPriority
impl Unpin for LoadPriority
impl UnwindSafe for LoadPriority
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more