[][src]Struct postgres_parser::sys::RangeSubselect

#[repr(C)]pub struct RangeSubselect {
    pub type_: NodeTag,
    pub lateral: bool,
    pub subquery: *mut Node,
    pub alias: *mut Alias,
}

RangeSubselect subquery appearing in a FROM clause

Fields

type_: NodeTaglateral: boolsubquery: *mut Node

does it have LATERAL prefix?

alias: *mut Alias

the untransformed subselect clause

Trait Implementations

impl Debug for RangeSubselect[src]

impl Default for RangeSubselect[src]

impl Eq for RangeSubselect[src]

impl Hash for RangeSubselect[src]

impl PartialEq<RangeSubselect> for RangeSubselect[src]

impl StructuralEq for RangeSubselect[src]

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