[][src]Struct hightide::High

pub struct High<F>(_);

Wraps the endpoint to bypass the orphan rules - pretty much ignore this one

Trait Implementations

impl<State, F, Fut, Res> Endpoint<State> for High<F> where
    State: Clone + Send + Sync + 'static,
    F: Send + Sync + 'static + Fn(Request<State>) -> Fut,
    Fut: Future<Output = Res> + Send + 'static,
    Res: Responder + 'static, 
[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for High<F> where
    F: RefUnwindSafe

impl<F> Send for High<F> where
    F: Send

impl<F> Sync for High<F> where
    F: Sync

impl<F> Unpin for High<F> where
    F: Unpin

impl<F> UnwindSafe for High<F> where
    F: 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<State, F, Fut, Res> Endpoint<State> for F where
    F: Send + Sync + 'static + Fn(Request<State>) -> Fut,
    Fut: Future<Output = Result<Res, Error>> + Send + 'static,
    Res: Into<Response> + 'static,
    State: Clone + Send + Sync + 'static, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,