pub struct MakeServiceFn<F> {
    f: F,
}
Expand description

MakeService returned from make_service_fn

Fields§

§f: F

Trait Implementations§

source§

impl<F: Clone> Clone for MakeServiceFn<F>

source§

fn clone(&self) -> MakeServiceFn<F>

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<F> Debug for MakeServiceFn<F>

source§

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

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

impl<'t, F, Ret, Target, Svc, MkErr> Service<&'t Target> for MakeServiceFn<F>where F: FnMut(&Target) -> Ret, Ret: Future<Output = Result<Svc, MkErr>>, MkErr: Into<Box<dyn StdError + Send + Sync>>,

§

type Error = MkErr

Errors produced by the service.
§

type Response = Svc

Responses given by the service.
§

type Future = Ret

The future response value.
source§

fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, target: &'t Target) -> Self::Future

Process the request and return the response asynchronously. Read more
source§

impl<F: Copy> Copy for MakeServiceFn<F>

Auto Trait Implementations§

§

impl<F> RefUnwindSafe for MakeServiceFn<F>where F: RefUnwindSafe,

§

impl<F> Send for MakeServiceFn<F>where F: Send,

§

impl<F> Sync for MakeServiceFn<F>where F: Sync,

§

impl<F> Unpin for MakeServiceFn<F>where F: Unpin,

§

impl<F> UnwindSafe for MakeServiceFn<F>where F: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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<T, Target, E, ME, S, F, IB, OB> MakeServiceRef<Target, IB> for Twhere T: for<'a> Service<&'a Target, Error = ME, Response = S, Future = F>, E: Into<Box<dyn Error + Sync + Send, Global>>, ME: Into<Box<dyn Error + Sync + Send, Global>>, S: HttpService<IB, ResBody = OB, Error = E>, F: Future<Output = Result<S, ME>>, IB: Body, OB: Body,

§

type Error = E

§

type Service = S

§

type ResBody = OB

§

type MakeError = ME

§

type Future = F

§

type __DontNameMe = CantName

source§

fn poll_ready_ref( &mut self, cx: &mut Context<'_> ) -> Poll<Result<(), <T as MakeServiceRef<Target, IB>>::MakeError>>

source§

fn make_service_ref( &mut self, target: &Target ) -> <T as MakeServiceRef<Target, IB>>::Future

source§

impl<T> ToOwned for Twhere 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 Twhere 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 Twhere 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.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<S, Target> Sealed<(Target,)> for Swhere S: Service<Target>,

source§

impl<T, Target, S, B1, B2> Sealed<(Target, B1)> for Twhere T: for<'a> Service<&'a Target, Response = S>, S: HttpService<B1, ResBody = B2>, B1: Body, B2: Body,