[][src]Struct postgres_parser::sys::SortBy

#[repr(C)]pub struct SortBy {
    pub type_: NodeTag,
    pub node: *mut Node,
    pub sortby_dir: SortByDir,
    pub sortby_nulls: SortByNulls,
    pub useOp: *mut List,
    pub location: c_int,
}

SortBy for ORDER BY clause

Fields

type_: NodeTagnode: *mut Nodesortby_dir: SortByDir

expression to sort on

sortby_nulls: SortByNulls

ASC/DESC/USING/default

useOp: *mut List

NULLS FIRST/LAST

location: c_int

name of op to use, if SORTBY_USING

Trait Implementations

impl Debug for SortBy[src]

impl Default for SortBy[src]

impl Eq for SortBy[src]

impl Hash for SortBy[src]

impl PartialEq<SortBy> for SortBy[src]

impl StructuralEq for SortBy[src]

impl StructuralPartialEq for SortBy[src]

Auto Trait Implementations

impl RefUnwindSafe for SortBy

impl !Send for SortBy

impl !Sync for SortBy

impl Unpin for SortBy

impl UnwindSafe for SortBy

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.