pub struct BuildGridSavedStateContext {
pub column_order: Vec<String>,
pub active_filters: BTreeMap<String, String>,
pub sort_state: SortState,
pub group_by_columns: Vec<String>,
pub current_page: usize,
pub page_size: usize,
pub total_items: usize,
pub expanded_rows: BTreeMap<String, bool>,
pub expanded_tree_rows: BTreeMap<String, bool>,
pub pinned_columns: BTreeMap<String, String>,
}Fields§
§column_order: Vec<String>§active_filters: BTreeMap<String, String>§sort_state: SortState§group_by_columns: Vec<String>§current_page: usize§page_size: usize§total_items: usize§expanded_rows: BTreeMap<String, bool>§expanded_tree_rows: BTreeMap<String, bool>§pinned_columns: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for BuildGridSavedStateContext
impl Clone for BuildGridSavedStateContext
Source§fn clone(&self) -> BuildGridSavedStateContext
fn clone(&self) -> BuildGridSavedStateContext
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 BuildGridSavedStateContext
impl Debug for BuildGridSavedStateContext
Source§impl<'de> Deserialize<'de> for BuildGridSavedStateContext
impl<'de> Deserialize<'de> for BuildGridSavedStateContext
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
impl StructuralPartialEq for BuildGridSavedStateContext
Auto Trait Implementations§
impl Freeze for BuildGridSavedStateContext
impl RefUnwindSafe for BuildGridSavedStateContext
impl Send for BuildGridSavedStateContext
impl Sync for BuildGridSavedStateContext
impl Unpin for BuildGridSavedStateContext
impl UnsafeUnpin for BuildGridSavedStateContext
impl UnwindSafe for BuildGridSavedStateContext
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