[][src]Struct postgres_parser::sys::CollateExpr

#[repr(C)]pub struct CollateExpr {
    pub xpr: Expr,
    pub arg: *mut Expr,
    pub collOid: Oid,
    pub location: c_int,
}

CollateExpr COLLATE

The planner replaces CollateExpr with RelabelType during expression preprocessing, so execution never sees a CollateExpr.

Fields

xpr: Exprarg: *mut ExprcollOid: Oid

input expression

location: c_int

collation's OID

Trait Implementations

impl Debug for CollateExpr[src]

impl Default for CollateExpr[src]

impl Eq for CollateExpr[src]

impl Hash for CollateExpr[src]

impl PartialEq<CollateExpr> for CollateExpr[src]

impl StructuralEq for CollateExpr[src]

impl StructuralPartialEq for CollateExpr[src]

Auto Trait Implementations

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.