pub enum RowState {
Ready,
Loading,
}Expand description
Whether a realized row’s data is resident yet. A windowed/lazy source returns
Loading for indices outside its resident window; the view renders a
placeholder skeleton for those and calls request_window to pull them.
Variants§
Ready
Item data is resident; with_item/with_entry returns Some.
Loading
The row exists (counts against len/visible_count) but its data is not
yet loaded; with_item/with_entry returns None.
Trait Implementations§
impl Copy for RowState
impl Eq for RowState
impl StructuralPartialEq for RowState
Auto Trait Implementations§
impl Freeze for RowState
impl RefUnwindSafe for RowState
impl Send for RowState
impl Sync for RowState
impl Unpin for RowState
impl UnsafeUnpin for RowState
impl UnwindSafe for RowState
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