[][src]Struct postgres_parser::sys::A_Indices

#[repr(C)]pub struct A_Indices {
    pub type_: NodeTag,
    pub is_slice: bool,
    pub lidx: *mut Node,
    pub uidx: *mut Node,
}

A_Indices array subscript or slice bounds ([idx] or [lidx:uidx])

In slice case, either or both of lidx and uidx can be NULL (omitted). In nonslice case, uidx holds the single subscript and lidx is always NULL.

Fields

type_: NodeTagis_slice: boollidx: *mut Node

true if slice (i.e., colon present)

uidx: *mut Node

slice lower bound, if any

Trait Implementations

impl Debug for A_Indices[src]

impl Default for A_Indices[src]

impl Eq for A_Indices[src]

impl Hash for A_Indices[src]

impl PartialEq<A_Indices> for A_Indices[src]

impl StructuralEq for A_Indices[src]

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