pub struct SQLDeleteBuilder {
pub table: String,
pub where_clause: Option<String>,
pub returning: Vec<String>,
}Fields§
§table: String§where_clause: Option<String>§returning: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for SQLDeleteBuilder
impl Clone for SQLDeleteBuilder
Source§fn clone(&self) -> SQLDeleteBuilder
fn clone(&self) -> SQLDeleteBuilder
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 moreAuto Trait Implementations§
impl Freeze for SQLDeleteBuilder
impl RefUnwindSafe for SQLDeleteBuilder
impl Send for SQLDeleteBuilder
impl Sync for SQLDeleteBuilder
impl Unpin for SQLDeleteBuilder
impl UnsafeUnpin for SQLDeleteBuilder
impl UnwindSafe for SQLDeleteBuilder
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