pub enum GridSortDirection {
Asc,
Desc,
}Expand description
Grid sort direction.
Variants§
Trait Implementations§
Source§impl Clone for GridSortDirection
impl Clone for GridSortDirection
Source§fn clone(&self) -> GridSortDirection
fn clone(&self) -> GridSortDirection
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 GridSortDirection
impl Debug for GridSortDirection
Source§impl<'de> Deserialize<'de> for GridSortDirection
impl<'de> Deserialize<'de> for GridSortDirection
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 GridSortDirection
impl PartialEq for GridSortDirection
Source§fn eq(&self, other: &GridSortDirection) -> bool
fn eq(&self, other: &GridSortDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GridSortDirection
impl Serialize for GridSortDirection
impl Copy for GridSortDirection
impl Eq for GridSortDirection
impl StructuralPartialEq for GridSortDirection
Auto Trait Implementations§
impl Freeze for GridSortDirection
impl RefUnwindSafe for GridSortDirection
impl Send for GridSortDirection
impl Sync for GridSortDirection
impl Unpin for GridSortDirection
impl UnsafeUnpin for GridSortDirection
impl UnwindSafe for GridSortDirection
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