Struct sqlx_models_parser::ast::Prepare [−][src]
pub struct Prepare {
pub name: Ident,
pub data_types: Vec<DataType>,
pub statement: Box<Statement>,
}Expand description
PREPARE name [ ( data_type [, ...] ) ] AS statement
Note: this is a PostgreSQL-specific statement.
Fields
name: Identdata_types: Vec<DataType>statement: Box<Statement>Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Prepare
impl UnwindSafe for Prepare
Blanket Implementations
Mutably borrows from an owned value. Read more