pub struct CompiledQuery {
pub sql: String,
pub params: Vec<SqlValue>,
}Fields§
§sql: String§params: Vec<SqlValue>Implementations§
Trait Implementations§
Source§impl Clone for CompiledQuery
impl Clone for CompiledQuery
Source§fn clone(&self) -> CompiledQuery
fn clone(&self) -> CompiledQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CompiledQuery
impl Debug for CompiledQuery
Source§impl PartialEq for CompiledQuery
impl PartialEq for CompiledQuery
Source§fn eq(&self, other: &CompiledQuery) -> bool
fn eq(&self, other: &CompiledQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CompiledQuery
Auto Trait Implementations§
impl Freeze for CompiledQuery
impl RefUnwindSafe for CompiledQuery
impl Send for CompiledQuery
impl Sync for CompiledQuery
impl Unpin for CompiledQuery
impl UnsafeUnpin for CompiledQuery
impl UnwindSafe for CompiledQuery
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