[][src]Struct postgres_parser::nodes::RangeVar

pub struct RangeVar {
    pub catalogname: Option<String>,
    pub schemaname: Option<String>,
    pub relname: Option<String>,
    pub inh: bool,
    pub relpersistence: char,
    pub alias: Option<Box<Alias>>,
    pub location: i32,
}

RangeVar range variable, used in FROM clauses

Also used to represent table names in utility statements; there, the alias field is not used, and inh tells whether to apply the operation recursively to child tables. In some contexts it is also useful to carry a TEMP table indication here.

Fields

catalogname: Option<String>schemaname: Option<String>relname: Option<String>inh: boolrelpersistence: charalias: Option<Box<Alias>>location: i32

Trait Implementations

impl Debug for RangeVar[src]

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

impl Eq for RangeVar[src]

impl PartialEq<RangeVar> for RangeVar[src]

impl Serialize for RangeVar[src]

impl StructuralEq for RangeVar[src]

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