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