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
sourceimpl<T> DieselMiddleware<T>where
T: R2D2Connection,
impl<T> DieselMiddleware<T>where
T: R2D2Connection,
Trait Implementations
sourceimpl<T> Clone for DieselMiddleware<T>where
T: R2D2Connection + 'static,
impl<T> Clone for DieselMiddleware<T>where
T: R2D2Connection + 'static,
sourceimpl<T> Middleware for DieselMiddleware<T>where
T: R2D2Connection + 'static,
impl<T> Middleware for DieselMiddleware<T>where
T: R2D2Connection + 'static,
sourcefn 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 moresourceimpl<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
.sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> IntoSql for T
impl<T> IntoSql for T
sourcefn 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 moresourcefn 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