pub struct DBConnectionManager<D: Driver> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<D: Driver> Manager for DBConnectionManager<D>
impl<D: Driver> Manager for DBConnectionManager<D>
Source§type Type = <D as Driver>::Connection
type Type = <D as Driver>::Connection
Type of
super::Objects that this Manager creates and recycles.Source§type Error = Error
type Error = Error
Error that this
Manager can return when creating and/or recycling
super::Objects.Auto Trait Implementations§
impl<D> Freeze for DBConnectionManager<D>where
D: Freeze,
impl<D> RefUnwindSafe for DBConnectionManager<D>where
D: RefUnwindSafe,
impl<D> Send for DBConnectionManager<D>
impl<D> Sync for DBConnectionManager<D>
impl<D> Unpin for DBConnectionManager<D>where
D: Unpin,
impl<D> UnsafeUnpin for DBConnectionManager<D>where
D: UnsafeUnpin,
impl<D> UnwindSafe for DBConnectionManager<D>where
D: 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