pub struct ArraySortFunc {
pub this: Expression,
pub comparator: Option<Expression>,
pub desc: bool,
pub nulls_first: Option<bool>,
}Expand description
ARRAY_SORT function
Fields§
§this: Expression§comparator: Option<Expression>§desc: bool§nulls_first: Option<bool>Trait Implementations§
Source§impl Clone for ArraySortFunc
impl Clone for ArraySortFunc
Source§fn clone(&self) -> ArraySortFunc
fn clone(&self) -> ArraySortFunc
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 ArraySortFunc
impl Debug for ArraySortFunc
Source§impl<'de> Deserialize<'de> for ArraySortFunc
impl<'de> Deserialize<'de> for ArraySortFunc
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 ArraySortFunc
impl PartialEq for ArraySortFunc
Source§impl Serialize for ArraySortFunc
impl Serialize for ArraySortFunc
impl StructuralPartialEq for ArraySortFunc
Auto Trait Implementations§
impl Freeze for ArraySortFunc
impl RefUnwindSafe for ArraySortFunc
impl Send for ArraySortFunc
impl Sync for ArraySortFunc
impl Unpin for ArraySortFunc
impl UnwindSafe for ArraySortFunc
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