[][src]Struct postgres_parser::nodes::CoerceViaIO

pub struct CoerceViaIO {
    pub arg: Option<Box<Expr>>,
    pub resulttype: Oid,
    pub resultcollid: Oid,
    pub coerceformat: CoercionForm,
    pub location: i32,
}

CoerceViaIO

CoerceViaIO represents a type coercion between two types whose textual representations are compatible, implemented by invoking the source type's typoutput function then the destination type's typinput function.

Fields

arg: Option<Box<Expr>>resulttype: Oidresultcollid: Oidcoerceformat: CoercionFormlocation: i32

Trait Implementations

impl Debug for CoerceViaIO[src]

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

impl Eq for CoerceViaIO[src]

impl PartialEq<CoerceViaIO> for CoerceViaIO[src]

impl Serialize for CoerceViaIO[src]

impl StructuralEq for CoerceViaIO[src]

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