[][src]Enum engine_io_server::transport::Transport

pub enum Transport<A: 'static + Adapter> {
    WebSocket(A::WebSocket),
    Polling(A::Polling),
}

Variants

WebSocket(A::WebSocket)
Polling(A::Polling)

Implementations

impl<A: 'static + Adapter> Transport<A>[src]

pub fn supports_framing(&self) -> bool[src]

Trait Implementations

impl<A: Debug + 'static + Adapter> Debug for Transport<A> where
    A::WebSocket: Debug,
    A::Polling: Debug
[src]

impl<A: 'static + Adapter> TransportImpl<<A as Adapter>::Response> for Transport<A>[src]

Auto Trait Implementations

impl<A> RefUnwindSafe for Transport<A> where
    <A as Adapter>::Polling: RefUnwindSafe,
    <A as Adapter>::WebSocket: RefUnwindSafe

impl<A> Send for Transport<A> where
    <A as Adapter>::Polling: Send,
    <A as Adapter>::WebSocket: Send

impl<A> Sync for Transport<A> where
    <A as Adapter>::Polling: Sync,
    <A as Adapter>::WebSocket: Sync

impl<A> Unpin for Transport<A> where
    <A as Adapter>::Polling: Unpin,
    <A as Adapter>::WebSocket: Unpin

impl<A> UnwindSafe for Transport<A> where
    <A as Adapter>::Polling: UnwindSafe,
    <A as Adapter>::WebSocket: 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, 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>,