[][src]Struct postgres_parser::nodes::CoerceToDomainValue

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

Placeholder node for the value to be processed by a domain's check constraint. This is effectively like a Param, but can be implemented more simply since we need only one replacement value at a time.

Note: the typeId/typeMod/collation will be set from the domain's base type, not the domain itself. This is because we shouldn't consider the value to be a member of the domain if we haven't yet checked its constraints.

Fields

typeId: OidtypeMod: i32collation: Oidlocation: i32

Trait Implementations

impl Debug for CoerceToDomainValue[src]

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

impl Eq for CoerceToDomainValue[src]

impl PartialEq<CoerceToDomainValue> for CoerceToDomainValue[src]

impl Serialize for CoerceToDomainValue[src]

impl StructuralEq for CoerceToDomainValue[src]

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