[][src]Struct actix_framed::VerifyWebSockets

pub struct VerifyWebSockets<T, C> { /* fields omitted */ }

Service that verifies incoming request if it is valid websocket upgrade request. In case of error returns HandshakeError

Trait Implementations

impl<T, C> Default for VerifyWebSockets<T, C>[src]

impl<T, C> Service for VerifyWebSockets<T, C>[src]

type Request = (Request, Framed<T, Codec>)

Requests handled by the service.

type Response = (Request, Framed<T, Codec>)

Responses given by the service.

type Error = (HandshakeError, Framed<T, Codec>)

Errors produced by the service.

type Future = Ready<Result<Self::Response, Self::Error>>

The future response value.

impl<T, C> ServiceFactory for VerifyWebSockets<T, C>[src]

type Config = C

Service factory configuration

type Request = (Request, Framed<T, Codec>)

Requests handled by the service.

type Response = (Request, Framed<T, Codec>)

Responses given by the service

type Error = (HandshakeError, Framed<T, Codec>)

Errors produced by the service

type InitError = ()

Errors produced while building a service.

type Service = VerifyWebSockets<T, C>

The Service value created by this factory

type Future = Ready<Result<Self::Service, Self::InitError>>

The future of the Service instance.

Auto Trait Implementations

impl<T, C> RefUnwindSafe for VerifyWebSockets<T, C> where
    C: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, C> Send for VerifyWebSockets<T, C> where
    C: Send,
    T: Send

impl<T, C> Sync for VerifyWebSockets<T, C> where
    C: Sync,
    T: Sync

impl<T, C> Unpin for VerifyWebSockets<T, C> where
    C: Unpin,
    T: Unpin

impl<T, C> UnwindSafe for VerifyWebSockets<T, C> where
    C: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> IntoService<T> for T where
    T: Service
[src]

impl<T> IntoServiceFactory<T> for T where
    T: ServiceFactory
[src]

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.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,