pub struct AsyncDieselConnectionManager<C> { /* private fields */ }
Expand description
Implementations§
source§impl<C> AsyncDieselConnectionManager<C>where
C: AsyncConnection + 'static,
impl<C> AsyncDieselConnectionManager<C>where
C: AsyncConnection + 'static,
sourcepub fn new(connection_url: impl Into<String>) -> Selfwhere
C: AsyncConnection + 'static,
pub fn new(connection_url: impl Into<String>) -> Selfwhere
C: AsyncConnection + 'static,
Returns a new connection manager, which establishes connections to the given database URL.
sourcepub fn new_with_config(
connection_url: impl Into<String>,
manager_config: ManagerConfig<C>,
) -> Self
pub fn new_with_config( connection_url: impl Into<String>, manager_config: ManagerConfig<C>, ) -> Self
Returns a new connection manager, which establishes connections with the given database URL and that uses the specified configuration
Trait Implementations§
source§impl<C> Debug for AsyncDieselConnectionManager<C>
impl<C> Debug for AsyncDieselConnectionManager<C>
source§impl<C> Manager for AsyncDieselConnectionManager<C>where
C: PoolableConnection + Send + 'static,
select<AsExprOf<i32, Integer>>: ExecuteDsl<C>,
SqlQuery: QueryFragment<C::Backend>,
impl<C> Manager for AsyncDieselConnectionManager<C>where
C: PoolableConnection + Send + 'static,
select<AsExprOf<i32, Integer>>: ExecuteDsl<C>,
SqlQuery: QueryFragment<C::Backend>,
Auto Trait Implementations§
impl<C> Freeze for AsyncDieselConnectionManager<C>
impl<C> !RefUnwindSafe for AsyncDieselConnectionManager<C>
impl<C> Send for AsyncDieselConnectionManager<C>
impl<C> Sync for AsyncDieselConnectionManager<C>
impl<C> Unpin for AsyncDieselConnectionManager<C>
impl<C> !UnwindSafe for AsyncDieselConnectionManager<C>
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::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read moresource§impl<T, Conn> RunQueryDsl<Conn> for T
impl<T, Conn> RunQueryDsl<Conn> for T
source§fn execute<'conn, 'query>(
self,
conn: &'conn mut Conn,
) -> Conn::ExecuteFuture<'conn, 'query>
fn execute<'conn, 'query>( self, conn: &'conn mut Conn, ) -> Conn::ExecuteFuture<'conn, 'query>
Executes the given command, returning the number of rows affected. Read more
source§fn load<'query, 'conn, U>(
self,
conn: &'conn mut Conn,
) -> LoadFuture<'conn, 'query, Self, Conn, U>
fn load<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> LoadFuture<'conn, 'query, Self, Conn, U>
source§fn load_stream<'conn, 'query, U>(
self,
conn: &'conn mut Conn,
) -> Self::LoadFuture<'conn>where
Conn: AsyncConnection,
U: 'conn,
Self: LoadQuery<'query, Conn, U> + 'query,
fn load_stream<'conn, 'query, U>(
self,
conn: &'conn mut Conn,
) -> Self::LoadFuture<'conn>where
Conn: AsyncConnection,
U: 'conn,
Self: LoadQuery<'query, Conn, U> + 'query,
source§fn get_result<'query, 'conn, U>(
self,
conn: &'conn mut Conn,
) -> GetResult<'conn, 'query, Self, Conn, U>
fn get_result<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> GetResult<'conn, 'query, Self, Conn, U>
Runs the command, and returns the affected row. Read more
source§fn get_results<'query, 'conn, U>(
self,
conn: &'conn mut Conn,
) -> LoadFuture<'conn, 'query, Self, Conn, U>
fn get_results<'query, 'conn, U>( self, conn: &'conn mut Conn, ) -> LoadFuture<'conn, 'query, Self, Conn, U>
Runs the command, returning an
Vec
with the affected rows. Read more