pub struct Queryer<'a, C> {
pub manager: &'a PostArchiverManager<C>,
}Available on crate feature
utils only.Expand description
Helper that wraps a PostArchiverManager reference and provides low-level SQL execution.
Each query builder owns a Queryer at construction time and uses it to
access the database connection and result cache.
Fields§
§manager: &'a PostArchiverManager<C>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, C> Freeze for Queryer<'a, C>
impl<'a, C> RefUnwindSafe for Queryer<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for Queryer<'a, C>where
C: Sync,
impl<'a, C> Sync for Queryer<'a, C>where
C: Sync,
impl<'a, C> Unpin for Queryer<'a, C>
impl<'a, C> UnsafeUnpin for Queryer<'a, C>
impl<'a, C> UnwindSafe for Queryer<'a, C>where
C: RefUnwindSafe,
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