[][src]Struct postgres_parser::sys::CaseWhen

#[repr(C)]pub struct CaseWhen {
    pub xpr: Expr,
    pub expr: *mut Expr,
    pub result: *mut Expr,
    pub location: c_int,
}

CaseWhen one arm of a CASE expression

Fields

xpr: Exprexpr: *mut Exprresult: *mut Expr

condition expression

location: c_int

substitution result

Trait Implementations

impl Debug for CaseWhen[src]

impl Default for CaseWhen[src]

impl Eq for CaseWhen[src]

impl Hash for CaseWhen[src]

impl PartialEq<CaseWhen> for CaseWhen[src]

impl StructuralEq for CaseWhen[src]

impl StructuralPartialEq for CaseWhen[src]

Auto Trait Implementations

impl RefUnwindSafe for CaseWhen

impl !Send for CaseWhen

impl !Sync for CaseWhen

impl Unpin for CaseWhen

impl UnwindSafe for CaseWhen

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.