GeneratedAs in sqlparser::ast - Rust

Skip to main content

pub enum GeneratedAs {
    Always,
    ByDefault,
    ExpStored,
}
Expand description

GeneratedAss are modifiers that follow a column option in a generated. ‘ExpStored’ is used for a column generated from an expression and stored.

Variants§

§

Always

GENERATED ALWAYS

§

ByDefault

GENERATED BY DEFAULT

§

ExpStored

Expression-based generated column that is stored (used internally for expression-stored columns)

Trait Implementations§

Auto Trait Implementations§

§

impl Freeze for GeneratedAs

§

impl RefUnwindSafe for GeneratedAs

§

impl Send for GeneratedAs

§

impl Sync for GeneratedAs

§

impl Unpin for GeneratedAs

§

impl UnwindSafe for GeneratedAs

Blanket Implementations§