[][src]Struct conjure_http::server::AsyncEndpoint

pub struct AsyncEndpoint<T, B, R> where
    T: 'static,
    B: RequestBody + 'static,
    R: AsyncVisitResponse + 'static, 
{ pub metadata: Metadata, pub handler: &'static (dyn AsyncHandler<T, B, R> + Sync + Send), }

An asynchronous HTTP endpoint.

Fields

metadata: Metadata

Information about the endpoint.

handler: &'static (dyn AsyncHandler<T, B, R> + Sync + Send)

The handler for the endpoint.

Auto Trait Implementations

impl<T, B, R> Send for AsyncEndpoint<T, B, R>

impl<T, B, R> Sync for AsyncEndpoint<T, B, R>

impl<T, B, R> Unpin for AsyncEndpoint<T, B, R>

impl<T, B, R> !UnwindSafe for AsyncEndpoint<T, B, R>

impl<T, B, R> !RefUnwindSafe for AsyncEndpoint<T, B, R>

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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