[][src]Struct postgres_parser::sys::CreateConversionStmt

#[repr(C)]pub struct CreateConversionStmt {
    pub type_: NodeTag,
    pub conversion_name: *mut List,
    pub for_encoding_name: *mut c_char,
    pub to_encoding_name: *mut c_char,
    pub func_name: *mut List,
    pub def: bool,
}

CREATE CONVERSION Statement

Fields

type_: NodeTagconversion_name: *mut Listfor_encoding_name: *mut c_char

Name of the conversion

to_encoding_name: *mut c_char

source encoding name

func_name: *mut List

destination encoding name

def: bool

qualified conversion function name

Trait Implementations

impl Debug for CreateConversionStmt[src]

impl Default for CreateConversionStmt[src]

impl Eq for CreateConversionStmt[src]

impl Hash for CreateConversionStmt[src]

impl PartialEq<CreateConversionStmt> for CreateConversionStmt[src]

impl StructuralEq for CreateConversionStmt[src]

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