pub struct DieselMiddleware<T> where
T: Connection + '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: Connection,
impl<T> DieselMiddleware<T> where
T: Connection,
Trait Implementations
sourceimpl<T> Clone for DieselMiddleware<T> where
T: Connection + 'static,
impl<T> Clone for DieselMiddleware<T> where
T: Connection + 'static,
sourceimpl<T> Middleware for DieselMiddleware<T> where
T: Connection + 'static,
impl<T> Middleware for DieselMiddleware<T> where
T: Connection + '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 more
sourceimpl<T> NewMiddleware for DieselMiddleware<T> where
T: Connection + 'static,
impl<T> NewMiddleware for DieselMiddleware<T> where
T: Connection + 'static,
type Instance = DieselMiddleware<T>
type Instance = DieselMiddleware<T>
The type of Middleware
created by the NewMiddleware
.
sourcefn new_middleware(&self) -> Result<Self::Instance>
fn new_middleware(&self) -> Result<Self::Instance>
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub 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::Expression where
Self: AsExpression<T>,
fn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
Convert self
to an expression for Diesel’s query builder. Read more
sourcefn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
Convert &self
to an expression for Diesel’s query builder. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more