pub struct GridInfiniteScrollState {
pub scroll_up: bool,
pub scroll_down: bool,
pub data_loading: bool,
pub previous_visible_rows: usize,
}Fields§
§scroll_up: bool§scroll_down: bool§data_loading: bool§previous_visible_rows: usizeTrait Implementations§
Source§impl Clone for GridInfiniteScrollState
impl Clone for GridInfiniteScrollState
Source§fn clone(&self) -> GridInfiniteScrollState
fn clone(&self) -> GridInfiniteScrollState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GridInfiniteScrollState
impl Debug for GridInfiniteScrollState
Source§impl Default for GridInfiniteScrollState
impl Default for GridInfiniteScrollState
Source§fn default() -> GridInfiniteScrollState
fn default() -> GridInfiniteScrollState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GridInfiniteScrollState
impl<'de> Deserialize<'de> for GridInfiniteScrollState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GridInfiniteScrollState
impl PartialEq for GridInfiniteScrollState
Source§fn eq(&self, other: &GridInfiniteScrollState) -> bool
fn eq(&self, other: &GridInfiniteScrollState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GridInfiniteScrollState
impl Serialize for GridInfiniteScrollState
impl Eq for GridInfiniteScrollState
impl StructuralPartialEq for GridInfiniteScrollState
Auto Trait Implementations§
impl Freeze for GridInfiniteScrollState
impl RefUnwindSafe for GridInfiniteScrollState
impl Send for GridInfiniteScrollState
impl Sync for GridInfiniteScrollState
impl Unpin for GridInfiniteScrollState
impl UnsafeUnpin for GridInfiniteScrollState
impl UnwindSafe for GridInfiniteScrollState
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