pub struct DieselMiddleware<T>where
T: R2D2Connection + 'static,{ /* private fields */ }
Expand description
A Gotham compatible Middleware that manages a pool of Diesel connections via a Repo
and hands
out connections to other Middleware and Handlers that require them via the Gotham State
mechanism.
Implementations§
source§impl<T> DieselMiddleware<T>where
T: R2D2Connection,
impl<T> DieselMiddleware<T>where T: R2D2Connection,
Trait Implementations§
source§impl<T> Clone for DieselMiddleware<T>where
T: R2D2Connection + 'static,
impl<T> Clone for DieselMiddleware<T>where T: R2D2Connection + 'static,
source§impl<T> Middleware for DieselMiddleware<T>where
T: R2D2Connection + 'static,
impl<T> Middleware for DieselMiddleware<T>where T: R2D2Connection + 'static,
source§fn call<Chain>(self, state: State, chain: Chain) -> Pin<Box<HandlerFuture>>where
Chain: FnOnce(State) -> Pin<Box<HandlerFuture>> + 'static,
Self: Sized,
fn call<Chain>(self, state: State, chain: Chain) -> Pin<Box<HandlerFuture>>where Chain: FnOnce(State) -> Pin<Box<HandlerFuture>> + 'static, Self: Sized,
Entry point to the middleware. To pass the request on to the application, the middleware
invokes the
chain
function with the provided state
. Read moresource§impl<T> NewMiddleware for DieselMiddleware<T>where
T: R2D2Connection + 'static,
impl<T> NewMiddleware for DieselMiddleware<T>where T: R2D2Connection + 'static,
§type Instance = DieselMiddleware<T>
type Instance = DieselMiddleware<T>
The type of
Middleware
created by the NewMiddleware
.source§fn new_middleware(&self) -> Result<Self>
fn new_middleware(&self) -> Result<Self>
Create and return a new
Middleware
value.Auto Trait Implementations§
impl<T> RefUnwindSafe for DieselMiddleware<T>
impl<T> Send for DieselMiddleware<T>
impl<T> Sync for DieselMiddleware<T>
impl<T> Unpin for DieselMiddleware<T>
impl<T> UnwindSafe for DieselMiddleware<T>
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> Self::Expressionwhere
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> Self::Expressionwhere Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,
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>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more