Skip to main content

ServiceChain

Struct ServiceChain 

Source
pub struct ServiceChain<S, St, Req> { /* private fields */ }
Expand description

A builder for composing services and combinators into one service.

Implementations§

Source§

impl<S: Service<St, Req>, St, Req> ServiceChain<S, St, Req>

Source

pub fn and_then<Next, F>( self, service: F, ) -> ServiceChain<AndThen<S, Next>, St, Req>
where Self: Sized, F: IntoService<Next, St, S::Res>, Next: Service<St, S::Res>,

Calls another service after this service completes successfully.

The current service’s response becomes the next service’s request. If the current service returns an error, the next service is not called.

Source

pub fn then<Next, F>(self, service: F) -> ServiceChain<Then<S, Next>, St, Req>
where Self: Sized, F: IntoService<Next, St, Result<S::Res, S::Error>>, Next: Service<St, Result<S::Res, S::Error>>,

Calls another service after this service completes.

The next service receives the current service’s complete Result, so it can handle either a response or an error.

Source

pub fn map<F, Res>(self, f: F) -> ServiceChain<Map<F, S, Res>, St, Req>
where Self: Sized, F: Fn(S::Res) -> Res,

Maps this service’s response to a different type.

This is analogous to Option::map or Result::map.

Source

pub fn map_err<F, Err>(self, f: F) -> ServiceChain<MapErr<F, S, Err>, St, Req>
where Self: Sized, F: Fn(S::Error) -> Err,

Maps this service’s error to a different type.

This is analogous to Result::map_err and is useful for normalizing error types across composed services.

Source

pub fn readiness<F>( self, ready: F, ) -> ServiceChain<AndThen<S, FnReadiness<F, S::Error>>, St, Req>
where Self: Sized, F: AsyncFn(&St) -> Result<(), S::Error>,

Adds a custom readiness check to the service chain.

Source

pub fn shutdown<F>( self, sh: F, ) -> ServiceChain<AndThen<S, FnShutdown<F, S::Error>>, St, Req>
where Self: Sized, F: AsyncFnOnce(&St),

Adds a callback that runs once when the service shuts down.

Source

pub fn apply_fn<F, In, Out, Err>( self, f: F, ) -> ServiceChain<Apply<S, St, Req, F, In, Out, Err>, St, In>
where F: AsyncFn(In, &ApplyCtx<'_, S, St, Req>) -> Result<Out, Err>, Err: From<S::Error>,

Applies an asynchronous function as middleware to this service.

This is shorthand for calling crate::apply_fn on the chained service.

Trait Implementations§

Source§

impl<S, St, Req> Clone for ServiceChain<S, St, Req>
where S: Clone + Service<St, Req>,

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<S, St, Req> Debug for ServiceChain<S, St, Req>
where S: Debug + Service<St, Req>,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<S: Service<St, Req>, St, Req> Service<St, Req> for ServiceChain<S, St, Req>

Source§

type Res = <S as Service<St, Req>>::Res

Response produced by the service.
Source§

type Error = <S as Service<St, Req>>::Error

Error produced while checking readiness or processing a request.
Source§

async fn call( &self, req: Req, ctx: Ctx<'_, Self, St>, ) -> Result<Self::Res, Self::Error>

Processes a request and asynchronously returns the response. Read more
Source§

async fn ready(&self, ctx: Ctx<'_, Self, St>) -> Result<(), Self::Error>

Waits until the service is ready to process a request. Read more
Source§

async fn shutdown(&self, ctx: Ctx<'_, Self, St>)

Shuts down the service. Read more
Source§

fn map<F, Res>(self, f: F) -> ServiceChain<Map<F, Self, Res>, St, Req>
where Self: Sized, F: Fn(Self::Res) -> Res,

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>
where Self: Sized, F: Fn(Self::Error) -> E,

Maps this service’s error to a different type, returning a new service. Read more
Source§

fn and_then<Next, F>(self, f: F) -> ServiceChain<AndThen<Self, Next>, St, Req>
where Self: Sized, Next: Service<St, Self::Res, Error = Self::Error>, F: IntoService<Next, St, Self::Res>,

Calls another service after this service completes successfully. Read more
Source§

fn pipeline(self, st: St) -> Pipeline<Req, Self::Res, Self::Error>
where Self: Sized + 'static, St: 'static, Req: 'static,

Wraps this service and its state in a Pipeline.

Auto Trait Implementations§

§

impl<S, St, Req> Freeze for ServiceChain<S, St, Req>

§

impl<S, St, Req> RefUnwindSafe for ServiceChain<S, St, Req>

§

impl<S, St, Req> Send for ServiceChain<S, St, Req>

§

impl<S, St, Req> Sync for ServiceChain<S, St, Req>

§

impl<S, St, Req> Unpin for ServiceChain<S, St, Req>

§

impl<S, St, Req> UnsafeUnpin for ServiceChain<S, St, Req>

§

impl<S, St, Req> UnwindSafe for ServiceChain<S, St, Req>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<S, St, Req> IntoService<S, St, Req> for S
where S: Service<St, Req>,

Source§

fn into_service(self) -> S

Converts this value into a service.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.