[][src]Struct tide::sse::SseEndpoint

pub struct SseEndpoint<F, Fut, State> where
    State: Send + Sync + 'static,
    F: Fn(Request<State>, Sender) -> Fut + Send + Sync + 'static,
    Fut: Future<Output = Result<()>> + Send + Sync + 'static, 
{ /* fields omitted */ }

An endpoint that can handle SSE connections.

Trait Implementations

impl<F: Debug, Fut: Debug, State: Debug> Debug for SseEndpoint<F, Fut, State> where
    State: Send + Sync + 'static,
    F: Fn(Request<State>, Sender) -> Fut + Send + Sync + 'static,
    Fut: Future<Output = Result<()>> + Send + Sync + 'static, 
[src]

impl<F, Fut, State> Endpoint<State> for SseEndpoint<F, Fut, State> where
    State: Send + Sync + 'static,
    F: Fn(Request<State>, Sender) -> Fut + Send + Sync + 'static,
    Fut: Future<Output = Result<()>> + Send + Sync + 'static, 
[src]

Auto Trait Implementations

impl<F, Fut, State> RefUnwindSafe for SseEndpoint<F, Fut, State> where
    F: RefUnwindSafe,
    Fut: RefUnwindSafe,
    State: RefUnwindSafe

impl<F, Fut, State> Send for SseEndpoint<F, Fut, State>

impl<F, Fut, State> Sync for SseEndpoint<F, Fut, State>

impl<F, Fut, State> Unpin for SseEndpoint<F, Fut, State> where
    Fut: Unpin,
    State: Unpin

impl<F, Fut, State> UnwindSafe for SseEndpoint<F, Fut, State> where
    F: RefUnwindSafe,
    Fut: UnwindSafe,
    State: 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.