pub struct FnShutdown<F, Err> { /* private fields */ }Expand description
Function that can act as a on_shutdown callback.
Implementations§
Source§impl<F, Err> FnShutdown<F, Err>
impl<F, Err> FnShutdown<F, Err>
pub fn new<St>(f: F) -> Selfwhere
F: AsyncFnOnce(&St),
Trait Implementations§
Source§impl<F, Err> Clone for FnShutdown<F, Err>where
F: Clone,
impl<F, Err> Clone for FnShutdown<F, Err>where
F: Clone,
Source§impl<F, Err> Debug for FnShutdown<F, Err>
impl<F, Err> Debug for FnShutdown<F, Err>
Source§impl<F, St, Req, Err> Service<St, Req> for FnShutdown<F, Err>where
F: AsyncFnOnce(&St),
impl<F, St, Req, Err> Service<St, Req> for FnShutdown<F, Err>where
F: AsyncFnOnce(&St),
Source§async fn call(&self, req: Req, _: Ctx<'_, Self, St>) -> Result<Req, Err>
async fn call(&self, req: Req, _: Ctx<'_, Self, St>) -> Result<Req, Err>
Processes a request and asynchronously returns the response. Read more
Source§async fn ready(&self, ctx: Ctx<'_, Self, St>) -> Result<(), Self::Error>
async fn ready(&self, ctx: Ctx<'_, Self, St>) -> Result<(), Self::Error>
Returns when the service is ready to process requests. Read more
Source§fn map<F, Res>(self, f: F) -> ServiceChain<Map<F, Self, Res>, St, Req>
fn map<F, Res>(self, f: F) -> ServiceChain<Map<F, Self, Res>, St, Req>
Maps this service’s output to a different type, returning a new service. Read more
Source§fn map_err<F, E>(self, f: F) -> ServiceChain<MapErr<F, Self, E>, St, Req>
fn map_err<F, E>(self, f: F) -> ServiceChain<MapErr<F, Self, E>, St, Req>
Maps this service’s error to a different type, returning a new service. Read more
Source§impl<F, St, Req, Err> ServiceFactory<St, Req> for FnShutdown<F, Err>
impl<F, St, Req, Err> ServiceFactory<St, Req> for FnShutdown<F, Err>
Source§type Service = FnShutdown<F, Err>
type Service = FnShutdown<F, Err>
The type of
Service produced by this factory.Source§async fn create(&self, _: &St) -> Result<Self::Service, Self::InitError>
async fn create(&self, _: &St) -> Result<Self::Service, Self::InitError>
Creates a new service asynchronously and returns it.
Source§async fn pipeline(
&self,
st: St,
) -> Result<Pipeline<Req, Self::Res, Self::Error>, Self::InitError>where
Self: 'static,
St: 'static,
Req: 'static,
async fn pipeline(
&self,
st: St,
) -> Result<Pipeline<Req, Self::Res, Self::Error>, Self::InitError>where
Self: 'static,
St: 'static,
Req: 'static,
Asynchronously creates a new service and wraps it in a container.
Source§fn map<F, Res>(
self,
f: F,
) -> ServiceChainFactory<MapFactory<F, Self, Res>, St, Req>
fn map<F, Res>( self, f: F, ) -> ServiceChainFactory<MapFactory<F, Self, Res>, St, Req>
Returns a new service that maps this service’s output to a different type.
Source§fn map_err<F, E>(
self,
f: F,
) -> ServiceChainFactory<MapErrFactory<F, Self, E>, St, Req>
fn map_err<F, E>( self, f: F, ) -> ServiceChainFactory<MapErrFactory<F, Self, E>, St, Req>
Transforms this service’s error into another error,
producing a new service.
Source§fn map_init_err<F, E>(
self,
f: F,
) -> ServiceChainFactory<MapInitErr<F, Self, E>, St, Req>
fn map_init_err<F, E>( self, f: F, ) -> ServiceChainFactory<MapInitErr<F, Self, E>, St, Req>
Maps this factory’s initialization error to a different error,
returning a new service factory.
Source§fn and_then<U, F>(
self,
f: F,
) -> ServiceChainFactory<AndThenFactory<Self, U>, St, Req>where
Self: Sized,
U: ServiceFactory<St, Self::Res, Error = Self::Error, InitError = Self::InitError>,
F: IntoServiceFactory<U, St, Self::Res>,
fn and_then<U, F>(
self,
f: F,
) -> ServiceChainFactory<AndThenFactory<Self, U>, St, Req>where
Self: Sized,
U: ServiceFactory<St, Self::Res, Error = Self::Error, InitError = Self::InitError>,
F: IntoServiceFactory<U, St, Self::Res>,
Call another service after call to this one has resolved successfully.
Auto Trait Implementations§
impl<F, Err> !Freeze for FnShutdown<F, Err>
impl<F, Err> !RefUnwindSafe for FnShutdown<F, Err>
impl<F, Err> !Sync for FnShutdown<F, Err>
impl<F, Err> Send for FnShutdown<F, Err>
impl<F, Err> Unpin for FnShutdown<F, Err>
impl<F, Err> UnsafeUnpin for FnShutdown<F, Err>
impl<F, Err> UnwindSafe for FnShutdown<F, Err>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<S, St, Req> IntoService<S, St, Req> for Swhere
S: Service<St, Req>,
impl<S, St, Req> IntoService<S, St, Req> for Swhere
S: Service<St, Req>,
Source§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
ServiceSource§impl<Sf, St, Req> IntoServiceFactory<Sf, St, Req> for Sfwhere
Sf: ServiceFactory<St, Req>,
impl<Sf, St, Req> IntoServiceFactory<Sf, St, Req> for Sfwhere
Sf: ServiceFactory<St, Req>,
Source§fn into_factory(self) -> Sf
fn into_factory(self) -> Sf
Convert
Self to a ServiceFactory