[][src]Struct postgres_parser::sys::SetToDefault

#[repr(C)]pub struct SetToDefault {
    pub xpr: Expr,
    pub typeId: Oid,
    pub typeMod: int32,
    pub collation: Oid,
    pub location: c_int,
}

Placeholder node for a DEFAULT marker in an INSERT or UPDATE command.

This is not an executable expression: it must be replaced by the actual column default expression during rewriting. But it is convenient to treat it as an expression node during parsing and rewriting.

Fields

xpr: ExprtypeId: OidtypeMod: int32

type for substituted value

collation: Oid

typemod for substituted value

location: c_int

collation for the substituted value

Trait Implementations

impl Debug for SetToDefault[src]

impl Default for SetToDefault[src]

impl Eq for SetToDefault[src]

impl Hash for SetToDefault[src]

impl PartialEq<SetToDefault> for SetToDefault[src]

impl StructuralEq for SetToDefault[src]

impl StructuralPartialEq for SetToDefault[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.