Struct diesel::query_builder::CollectedQuery
source · pub struct CollectedQuery<T> { /* private fields */ }
Expand description
A SQL query variant with already collected bind data which can be moved
Implementations§
source§impl<T> CollectedQuery<T>
impl<T> CollectedQuery<T>
sourcepub fn new(sql: String, safe_to_cache_prepared: bool, bind_data: T) -> Self
pub fn new(sql: String, safe_to_cache_prepared: bool, bind_data: T) -> Self
Builds a CollectedQuery with movable bind data
Trait Implementations§
source§impl<T: Debug> Debug for CollectedQuery<T>
impl<T: Debug> Debug for CollectedQuery<T>
source§impl<T> Query for CollectedQuery<T>
impl<T> Query for CollectedQuery<T>
source§impl<DB, T> QueryFragment<DB> for CollectedQuery<T>where
DB: Backend + DieselReserveSpecialization,
for<'a> <DB as Backend>::BindCollector<'a>: MoveableBindCollector<DB, BindData = T>,
impl<DB, T> QueryFragment<DB> for CollectedQuery<T>where
DB: Backend + DieselReserveSpecialization,
for<'a> <DB as Backend>::BindCollector<'a>: MoveableBindCollector<DB, BindData = T>,
source§impl<T> QueryId for CollectedQuery<T>
impl<T> QueryId for CollectedQuery<T>
source§const HAS_STATIC_QUERY_ID: bool = false
const HAS_STATIC_QUERY_ID: bool = false
Can the SQL generated by
Self
be uniquely identified by its type? Read moreAuto Trait Implementations§
impl<T> Freeze for CollectedQuery<T>where
T: Freeze,
impl<T> RefUnwindSafe for CollectedQuery<T>where
T: RefUnwindSafe,
impl<T> Send for CollectedQuery<T>where
T: Send,
impl<T> Sync for CollectedQuery<T>where
T: Sync,
impl<T> Unpin for CollectedQuery<T>where
T: Unpin,
impl<T> UnwindSafe for CollectedQuery<T>where
T: UnwindSafe,
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