pub struct Deallocate {
pub name: Ident,
pub prepare: bool,
}
Expand description
DEALLOCATE [ PREPARE ] { name | ALL }
Note: this is a PostgreSQL-specific statement.
Fields§
§name: Ident
§prepare: bool
Trait Implementations§
Source§impl Clone for Deallocate
impl Clone for Deallocate
Source§fn clone(&self) -> Deallocate
fn clone(&self) -> Deallocate
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Deallocate
impl Debug for Deallocate
Source§impl Display for Deallocate
impl Display for Deallocate
Source§impl Hash for Deallocate
impl Hash for Deallocate
Source§impl PartialEq for Deallocate
impl PartialEq for Deallocate
impl Eq for Deallocate
impl StructuralPartialEq for Deallocate
Auto Trait Implementations§
impl Freeze for Deallocate
impl RefUnwindSafe for Deallocate
impl Send for Deallocate
impl Sync for Deallocate
impl Unpin for Deallocate
impl UnwindSafe for Deallocate
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