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§
impl Eq for Prepare
impl StructuralPartialEq for Prepare
Auto Trait Implementations§
impl Freeze for Prepare
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