pub struct GridSavedState {
pub column_order: Vec<String>,
pub filters: BTreeMap<String, String>,
pub sort: Option<SortState>,
pub grouping: Vec<String>,
pub pagination: Option<GridSavedPaginationState>,
pub expandable: BTreeMap<String, bool>,
pub tree_view: BTreeMap<String, bool>,
pub pinning: BTreeMap<String, String>,
}Fields§
§column_order: Vec<String>§filters: BTreeMap<String, String>§sort: Option<SortState>§grouping: Vec<String>§pagination: Option<GridSavedPaginationState>§expandable: BTreeMap<String, bool>§tree_view: BTreeMap<String, bool>§pinning: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for GridSavedState
impl Clone for GridSavedState
Source§fn clone(&self) -> GridSavedState
fn clone(&self) -> GridSavedState
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 GridSavedState
impl Debug for GridSavedState
Source§impl Default for GridSavedState
impl Default for GridSavedState
Source§fn default() -> GridSavedState
fn default() -> GridSavedState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GridSavedState
impl<'de> Deserialize<'de> for GridSavedState
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 GridSavedState
impl PartialEq for GridSavedState
Source§impl Serialize for GridSavedState
impl Serialize for GridSavedState
impl Eq for GridSavedState
impl StructuralPartialEq for GridSavedState
Auto Trait Implementations§
impl Freeze for GridSavedState
impl RefUnwindSafe for GridSavedState
impl Send for GridSavedState
impl Sync for GridSavedState
impl Unpin for GridSavedState
impl UnsafeUnpin for GridSavedState
impl UnwindSafe for GridSavedState
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