Struct sql_from_models_parser::ast::Prepare
source · 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: Ident
§data_types: Vec<DataType>
§statement: Box<Statement>
Trait Implementations§
source§impl PartialEq<Prepare> for Prepare
impl PartialEq<Prepare> for Prepare
impl Eq for Prepare
impl StructuralEq for Prepare
impl StructuralPartialEq for Prepare
Auto Trait Implementations§
impl RefUnwindSafe for Prepare
impl Send for Prepare
impl Sync for Prepare
impl Unpin for Prepare
impl UnwindSafe for Prepare
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more