pub enum SortByNulls {
SORTBY_NULLS_DEFAULT = 0,
SORTBY_NULLS_FIRST = 1,
SORTBY_NULLS_LAST = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for SortByNulls
impl Clone for SortByNulls
Source§fn clone(&self) -> SortByNulls
fn clone(&self) -> SortByNulls
Returns a copy 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 SortByNulls
impl Debug for SortByNulls
Source§impl<'de> Deserialize<'de> for SortByNulls
impl<'de> Deserialize<'de> for SortByNulls
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 SortByNulls
impl PartialEq for SortByNulls
impl Copy for SortByNulls
impl Eq for SortByNulls
impl StructuralPartialEq for SortByNulls
Auto Trait Implementations§
impl Freeze for SortByNulls
impl RefUnwindSafe for SortByNulls
impl Send for SortByNulls
impl Sync for SortByNulls
impl Unpin for SortByNulls
impl UnwindSafe for SortByNulls
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