pub struct ApplyTransform<T, S, Req>(/* private fields */);
Expand description

Apply a Transform to a Service.

Trait Implementations§

source§

impl<T, S, Req> Clone for ApplyTransform<T, S, Req>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl<T, S, Req> ServiceFactory<Req> for ApplyTransform<T, S, Req>
where S: ServiceFactory<Req>, T: Transform<S::Service, Req, InitError = S::InitError>,

§

type Response = <T as Transform<<S as ServiceFactory<Req>>::Service, Req>>::Response

Responses given by the created services.
§

type Error = <T as Transform<<S as ServiceFactory<Req>>::Service, Req>>::Error

Errors produced by the created services.
§

type Config = <S as ServiceFactory<Req>>::Config

Service factory configuration.
§

type Service = <T as Transform<<S as ServiceFactory<Req>>::Service, Req>>::Transform

The kind of Service created by this factory.
§

type InitError = <T as Transform<<S as ServiceFactory<Req>>::Service, Req>>::InitError

Errors potentially raised while building a service.
§

type Future = ApplyTransformFuture<T, S, Req>

The future of the Service instance.g
source§

fn new_service(&self, cfg: S::Config) -> Self::Future

Create and return a new service asynchronously.

Auto Trait Implementations§

§

impl<T, S, Req> RefUnwindSafe for ApplyTransform<T, S, Req>

§

impl<T, S, Req> !Send for ApplyTransform<T, S, Req>

§

impl<T, S, Req> !Sync for ApplyTransform<T, S, Req>

§

impl<T, S, Req> Unpin for ApplyTransform<T, S, Req>
where Req: Unpin,

§

impl<T, S, Req> UnwindSafe for ApplyTransform<T, S, 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> 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<SF, Req> IntoServiceFactory<SF, Req> for SF
where SF: ServiceFactory<Req>,

source§

fn into_factory(self) -> SF

Convert Self to a ServiceFactory
source§

impl<SF, Req> ServiceFactoryExt<Req> for SF
where SF: ServiceFactory<Req>,

source§

fn map<F, R>(self, f: F) -> MapServiceFactory<Self, F, Req, R>
where Self: Sized, F: FnMut(Self::Response) -> R + Clone,

Map this service’s output to a different type, returning a new service of the resulting type.
source§

fn map_err<F, E>(self, f: F) -> MapErrServiceFactory<Self, Req, F, E>
where Self: Sized, F: Fn(Self::Error) -> E + Clone,

Map this service’s error to a different error, returning a new service.
source§

fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, Req, E>
where Self: Sized, F: Fn(Self::InitError) -> E + Clone,

Map this factory’s init error to a different error, returning a new service.
source§

fn and_then<I, SF1>(self, factory: I) -> AndThenServiceFactory<Self, SF1, Req>
where Self: Sized, Self::Config: Clone, I: IntoServiceFactory<SF1, Self::Response>, SF1: ServiceFactory<Self::Response, Config = Self::Config, Error = Self::Error, InitError = Self::InitError>,

Call another service after call to this one has resolved successfully.
source§

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

§

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>,

§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

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

§

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.