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<'de> Deserialize<'de> for Prepare
impl<'de> Deserialize<'de> for Prepare
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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