[][src]Struct postgres_parser::nodes::SetToDefault

pub struct SetToDefault {
    pub typeId: Oid,
    pub typeMod: i32,
    pub collation: Oid,
    pub location: i32,
}

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

typeId: OidtypeMod: i32collation: Oidlocation: i32

Trait Implementations

impl Debug for SetToDefault[src]

impl<'de> Deserialize<'de> for SetToDefault[src]

impl Eq for SetToDefault[src]

impl PartialEq<SetToDefault> for SetToDefault[src]

impl Serialize 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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.