pub struct WhereQuery {
pub fields: Vec<String>,
pub table: String,
pub values: Vec<String>,
}
Fields§
§fields: Vec<String>
§table: String
§values: Vec<String>
Implementations§
Trait Implementations§
Source§impl Clone for WhereQuery
impl Clone for WhereQuery
Source§fn clone(&self) -> WhereQuery
fn clone(&self) -> WhereQuery
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 WhereQuery
impl RefUnwindSafe for WhereQuery
impl Send for WhereQuery
impl Sync for WhereQuery
impl Unpin for WhereQuery
impl UnwindSafe for WhereQuery
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