Struct pgx_pg_sys::RangeVar[][src]

#[repr(C)]
pub struct RangeVar { pub type_: NodeTag, pub catalogname: *mut c_char, pub schemaname: *mut c_char, pub relname: *mut c_char, pub inh: bool, pub relpersistence: c_char, pub alias: *mut Alias, pub location: c_int, }

Fields

type_: NodeTagcatalogname: *mut c_charschemaname: *mut c_charrelname: *mut c_charinh: boolrelpersistence: c_charalias: *mut Aliaslocation: c_int

Trait Implementations

impl Clone for RangeVar[src]

impl Copy for RangeVar[src]

impl Debug for RangeVar[src]

impl Default for RangeVar[src]

impl Display for RangeVar[src]

impl PgNode for RangeVar[src]

type NodeType = RangeVar

Auto Trait Implementations

impl RefUnwindSafe for RangeVar

impl !Send for RangeVar

impl !Sync for RangeVar

impl Unpin for RangeVar

impl UnwindSafe for RangeVar

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.