pub struct SqlQuery<O> { /* private fields */ }Expand description
A trusted static SQL query with separately bound values.
Text parts must have a static lifetime. Runtime values can only enter the query through bind, which emits a dialect-specific placeholder.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<O> Freeze for SqlQuery<O>
impl<O> RefUnwindSafe for SqlQuery<O>
impl<O> Send for SqlQuery<O>
impl<O> Sync for SqlQuery<O>
impl<O> Unpin for SqlQuery<O>
impl<O> UnsafeUnpin for SqlQuery<O>
impl<O> UnwindSafe for SqlQuery<O>
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