Struct volo_http::extension::ExtensionService
source · pub struct ExtensionService<I, T> { /* private fields */ }Trait Implementations§
source§impl<I: Clone, T: Clone> Clone for ExtensionService<I, T>
impl<I: Clone, T: Clone> Clone for ExtensionService<I, T>
source§fn clone(&self) -> ExtensionService<I, T>
fn clone(&self) -> ExtensionService<I, T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<I: Default, T: Default> Default for ExtensionService<I, T>
impl<I: Default, T: Default> Default for ExtensionService<I, T>
source§fn default() -> ExtensionService<I, T>
fn default() -> ExtensionService<I, T>
Returns the “default value” for a type. Read more
source§impl<S, T> Service<HttpContext, Incoming> for ExtensionService<S, T>where
S: Service<HttpContext, Incoming, Response = Response, Error = Infallible> + Send + Sync + 'static,
T: Clone + Send + Sync + 'static,
impl<S, T> Service<HttpContext, Incoming> for ExtensionService<S, T>where
S: Service<HttpContext, Incoming, Response = Response, Error = Infallible> + Send + Sync + 'static,
T: Clone + Send + Sync + 'static,
impl<I: Copy, T: Copy> Copy for ExtensionService<I, T>
Auto Trait Implementations§
impl<I, T> RefUnwindSafe for ExtensionService<I, T>where
I: RefUnwindSafe,
T: RefUnwindSafe,
impl<I, T> Send for ExtensionService<I, T>
impl<I, T> Sync for ExtensionService<I, T>
impl<I, T> Unpin for ExtensionService<I, T>
impl<I, T> UnwindSafe for ExtensionService<I, T>where
I: UnwindSafe,
T: UnwindSafe,
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Cx, Req> ServiceExt<Cx, Req> for Twhere
T: Service<Cx, Req>,
impl<T, Cx, Req> ServiceExt<Cx, Req> for Twhere
T: Service<Cx, Req>,
source§fn map_err<E, F>(self, f: F) -> MapErr<T, F>
fn map_err<E, F>(self, f: F) -> MapErr<T, F>
Maps this service’s error value to a different value. Read more
source§fn map_response<F, Response>(self, f: F) -> MapResponse<T, F>
fn map_response<F, Response>(self, f: F) -> MapResponse<T, F>
Maps this service’s response value to a different value. Read more