pub struct DeleteStatement {
pub table: Table,
pub where_clause: Option<ConditionExpression>,
}
Fields§
§table: Table
§where_clause: Option<ConditionExpression>
Trait Implementations§
Source§impl Clone for DeleteStatement
impl Clone for DeleteStatement
Source§fn clone(&self) -> DeleteStatement
fn clone(&self) -> DeleteStatement
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 DeleteStatement
impl Debug for DeleteStatement
Source§impl Default for DeleteStatement
impl Default for DeleteStatement
Source§fn default() -> DeleteStatement
fn default() -> DeleteStatement
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteStatement
impl<'de> Deserialize<'de> for DeleteStatement
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
Source§impl Display for DeleteStatement
impl Display for DeleteStatement
Source§impl Hash for DeleteStatement
impl Hash for DeleteStatement
Source§impl PartialEq for DeleteStatement
impl PartialEq for DeleteStatement
Source§impl Serialize for DeleteStatement
impl Serialize for DeleteStatement
impl Eq for DeleteStatement
impl StructuralPartialEq for DeleteStatement
Auto Trait Implementations§
impl Freeze for DeleteStatement
impl RefUnwindSafe for DeleteStatement
impl Send for DeleteStatement
impl Sync for DeleteStatement
impl Unpin for DeleteStatement
impl UnwindSafe for DeleteStatement
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