pub struct GridRowsWindow {
pub offset: usize,
pub total_rows: usize,
pub rows: Vec<GridRow>,
}Expand description
Active window rows for one grid snapshot.
Fields§
§offset: usize§total_rows: usize§rows: Vec<GridRow>Trait Implementations§
Source§impl Clone for GridRowsWindow
impl Clone for GridRowsWindow
Source§fn clone(&self) -> GridRowsWindow
fn clone(&self) -> GridRowsWindow
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 GridRowsWindow
impl Debug for GridRowsWindow
Source§impl<'de> Deserialize<'de> for GridRowsWindow
impl<'de> Deserialize<'de> for GridRowsWindow
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 GridRowsWindow
impl PartialEq for GridRowsWindow
Source§fn eq(&self, other: &GridRowsWindow) -> bool
fn eq(&self, other: &GridRowsWindow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GridRowsWindow
impl Serialize for GridRowsWindow
impl StructuralPartialEq for GridRowsWindow
Auto Trait Implementations§
impl Freeze for GridRowsWindow
impl RefUnwindSafe for GridRowsWindow
impl Send for GridRowsWindow
impl Sync for GridRowsWindow
impl Unpin for GridRowsWindow
impl UnsafeUnpin for GridRowsWindow
impl UnwindSafe for GridRowsWindow
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