pub struct RenderedQuery {
pub sql: String,
pub params: HashMap<String, String>,
}Expand description
Result of rendering a query, containing the SQL string and collected parameters
Fields§
§sql: String§params: HashMap<String, String>Implementations§
Trait Implementations§
Source§impl Clone for RenderedQuery
impl Clone for RenderedQuery
Source§fn clone(&self) -> RenderedQuery
fn clone(&self) -> RenderedQuery
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 moreSource§impl Debug for RenderedQuery
impl Debug for RenderedQuery
Source§impl Display for RenderedQuery
impl Display for RenderedQuery
Source§impl PartialEq for RenderedQuery
impl PartialEq for RenderedQuery
impl StructuralPartialEq for RenderedQuery
Auto Trait Implementations§
impl Freeze for RenderedQuery
impl RefUnwindSafe for RenderedQuery
impl Send for RenderedQuery
impl Sync for RenderedQuery
impl Unpin for RenderedQuery
impl UnwindSafe for RenderedQuery
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