ObjectType in sqlparser::ast - Rust

Skip to main content

pub enum ObjectType {
    Table,
    View,
    MaterializedView,
    Index,
    Schema,
    Database,
    Role,
    Sequence,
    Stage,
    Type,
    User,
    Stream,
}
Expand description

Types of database objects referenced by DDL statements.

Variants§

§

Table

A table.

§

View

A view.

§

MaterializedView

A materialized view.

§

Index

An index.

§

Schema

A schema.

§

Database

A database.

§

Role

A role.

§

Sequence

A sequence.

§

Stage

A stage.

§

Type

A type definition.

§

User

A user.

§

Stream

A stream.

Trait Implementations§

Auto Trait Implementations§

§

impl Freeze for ObjectType

§

impl RefUnwindSafe for ObjectType

§

impl Send for ObjectType

§

impl Sync for ObjectType

§

impl Unpin for ObjectType

§

impl UnwindSafe for ObjectType

Blanket Implementations§