[][src]Struct postgres_parser::sys::DropStmt

#[repr(C)]pub struct DropStmt {
    pub type_: NodeTag,
    pub objects: *mut List,
    pub removeType: ObjectType,
    pub behavior: DropBehavior,
    pub missing_ok: bool,
    pub concurrent: bool,
}

Drop Table|Sequence|View|Index|Type|Domain|Conversion|Schema Statement

Fields

type_: NodeTagobjects: *mut ListremoveType: ObjectType

list of names

behavior: DropBehavior

object type

missing_ok: bool

RESTRICT or CASCADE behavior

concurrent: bool

skip error if object is missing?

Trait Implementations

impl Debug for DropStmt[src]

impl Default for DropStmt[src]

impl Eq for DropStmt[src]

impl Hash for DropStmt[src]

impl PartialEq<DropStmt> for DropStmt[src]

impl StructuralEq for DropStmt[src]

impl StructuralPartialEq for DropStmt[src]

Auto Trait Implementations

impl RefUnwindSafe for DropStmt

impl !Send for DropStmt

impl !Sync for DropStmt

impl Unpin for DropStmt

impl UnwindSafe for DropStmt

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.