[][src]Struct postgres_parser::sys::PartitionCmd

#[repr(C)]pub struct PartitionCmd {
    pub type_: NodeTag,
    pub name: *mut RangeVar,
    pub bound: *mut PartitionBoundSpec,
}

PartitionCmd info for ALTER TABLE/INDEX ATTACH/DETACH PARTITION commands

Fields

type_: NodeTagname: *mut RangeVarbound: *mut PartitionBoundSpec

name of partition to attach/detach

Trait Implementations

impl Debug for PartitionCmd[src]

impl Default for PartitionCmd[src]

impl Eq for PartitionCmd[src]

impl Hash for PartitionCmd[src]

impl PartialEq<PartitionCmd> for PartitionCmd[src]

impl StructuralEq for PartitionCmd[src]

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