pub struct ConnectionManager<T> { /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<T> ManageConnection for ConnectionManager<T>where
T: Connection + Send + 'static,
impl<T> ManageConnection for ConnectionManager<T>where
T: Connection + Send + 'static,
impl<T: Send + 'static> Sync for ConnectionManager<T>
Auto Trait Implementations§
impl<T> Freeze for ConnectionManager<T>
impl<T> RefUnwindSafe for ConnectionManager<T>where
T: RefUnwindSafe,
impl<T> Send for ConnectionManager<T>where
T: Send,
impl<T> Unpin for ConnectionManager<T>where
T: Unpin,
impl<T> UnwindSafe for ConnectionManager<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
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
Convert
&self
to an expression for Diesel’s query builder. Read more