Struct ntex_util::services::variant::VariantService3   
source · pub struct VariantService3<V1, V2, V3, V1R, V2R, V3R> { /* private fields */ }Trait Implementations§
source§impl<V1: Clone, V2: Clone, V3: Clone, V1R, V2R, V3R> Clone for VariantService3<V1, V2, V3, V1R, V2R, V3R>
 
impl<V1: Clone, V2: Clone, V3: Clone, V1R, V2R, V3R> Clone for VariantService3<V1, V2, V3, V1R, V2R, V3R>
source§impl<V1: Debug, V2: Debug, V3: Debug, V1R, V2R, V3R> Debug for VariantService3<V1, V2, V3, V1R, V2R, V3R>
 
impl<V1: Debug, V2: Debug, V3: Debug, V1R, V2R, V3R> Debug for VariantService3<V1, V2, V3, V1R, V2R, V3R>
source§impl<V1, V2, V3, V1R, V2R, V3R> Service<Variant3<V1R, V2R, V3R>> for VariantService3<V1, V2, V3, V1R, V2R, V3R>
 
impl<V1, V2, V3, V1R, V2R, V3R> Service<Variant3<V1R, V2R, V3R>> for VariantService3<V1, V2, V3, V1R, V2R, V3R>
§type Error = <V1 as Service<V1R>>::Error
 
type Error = <V1 as Service<V1R>>::Error
Errors produced by the service when polling readiness or executing call.
source§fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
 
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
Returns 
Ready when the service is able to process requests. Read moresource§async fn call(
    &self,
    req: Variant3<V1R, V2R, V3R>,
    ctx: ServiceCtx<'_, Self>
) -> Result<Self::Response, Self::Error>
 
async fn call( &self, req: Variant3<V1R, V2R, V3R>, ctx: ServiceCtx<'_, Self> ) -> Result<Self::Response, Self::Error>
Process the request and return the response asynchronously. Read more
Auto Trait Implementations§
impl<V1, V2, V3, V1R, V2R, V3R> RefUnwindSafe for VariantService3<V1, V2, V3, V1R, V2R, V3R>where
    V1: RefUnwindSafe,
    V1R: RefUnwindSafe,
    V2: RefUnwindSafe,
    V2R: RefUnwindSafe,
    V3: RefUnwindSafe,
    V3R: RefUnwindSafe,
impl<V1, V2, V3, V1R, V2R, V3R> Send for VariantService3<V1, V2, V3, V1R, V2R, V3R>
impl<V1, V2, V3, V1R, V2R, V3R> Sync for VariantService3<V1, V2, V3, V1R, V2R, V3R>
impl<V1, V2, V3, V1R, V2R, V3R> Unpin for VariantService3<V1, V2, V3, V1R, V2R, V3R>
impl<V1, V2, V3, V1R, V2R, V3R> UnwindSafe for VariantService3<V1, V2, V3, V1R, V2R, V3R>where
    V1: UnwindSafe,
    V1R: UnwindSafe,
    V2: UnwindSafe,
    V2R: UnwindSafe,
    V3: UnwindSafe,
    V3R: 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<Svc, Req> IntoService<Svc, Req> for Svcwhere
    Svc: Service<Req>,
 
impl<Svc, Req> IntoService<Svc, Req> for Svcwhere
    Svc: Service<Req>,
source§fn into_service(self) -> Svc
 
fn into_service(self) -> Svc
Convert to a 
Service