Struct hvcg_student_openapi_application::context::MakeAddContext[][src]

pub struct MakeAddContext<T, A> { /* fields omitted */ }

Implementations

impl<T, A, B, C, D> MakeAddContext<T, A> where
    A: Default + Push<XSpanIdString, Result = B>,
    B: Push<Option<AuthData>, Result = C>,
    C: Push<Option<Authorization>, Result = D>, 
[src]

pub fn new(inner: T) -> MakeAddContext<T, A>[src]

Trait Implementations

impl<Target, T, A, B, C, D> Service<Target> for MakeAddContext<T, A> where
    Target: Send,
    A: Default + Push<XSpanIdString, Result = B> + Send,
    B: Push<Option<AuthData>, Result = C>,
    C: Push<Option<Authorization>, Result = D>,
    D: Send + 'static,
    T: Service<Target> + Send,
    T::Future: Send + 'static, 
[src]

type Error = T::Error

Errors produced by the service.

type Response = AddContext<T::Response, A, B, C, D>

Responses given by the service.

type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>

The future response value.

fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>[src]

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

fn call(&mut self, target: Target) -> Self::Future[src]

Process the request and return the response asynchronously. Read more

Auto Trait Implementations

impl<T, A> RefUnwindSafe for MakeAddContext<T, A> where
    A: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, A> Send for MakeAddContext<T, A> where
    A: Send,
    T: Send

impl<T, A> Sync for MakeAddContext<T, A> where
    A: Sync,
    T: Sync

impl<T, A> Unpin for MakeAddContext<T, A> where
    A: Unpin,
    T: Unpin

impl<T, A> UnwindSafe for MakeAddContext<T, A> where
    A: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T, S, F, Target, ReqBody, ResBody, Error, MakeError> CompositedMakeService<Target, ReqBody, ResBody, Error, MakeError> for T where
    Target: Send,
    T: Service<Target, Response = S, Future = F, Error = MakeError> + Send,
    S: CompositedService<ReqBody, ResBody, Error> + Send + 'static,
    F: Future<Output = Result<S, MakeError>> + Send + 'static, 
[src]

pub fn poll_ready(
    &mut self,
    cx: &mut Context<'_>
) -> Poll<Result<(), MakeError>>
[src]

See tower_service::Service::poll_ready

pub fn call(
    &mut self,
    target: Target
) -> Pin<Box<dyn Future<Output = Result<Box<dyn CompositedService<ReqBody, ResBody, Error> + 'static + Send, Global>, MakeError>> + 'static + Send, Global>>
[src]

See tower_service::Service::call

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

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

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

fn in_current_span(self) -> Instrumented<Self>[src]

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

impl<T> Instrument for T[src]

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

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

fn in_current_span(self) -> Instrumented<Self>[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.