Struct sql_from_models_parser::ast::Deallocate
source · 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 copy 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
source§fn eq(&self, other: &Deallocate) -> bool
fn eq(&self, other: &Deallocate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for Deallocate
impl StructuralPartialEq for Deallocate
Auto Trait Implementations§
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