[][src]Struct izanami::server::CurrentThread

pub struct CurrentThread(_);

A Backend indicating that the server uses the single-threaded Tokio runtime.

Trait Implementations

impl<I, S, Bd> Backend<I, S> for CurrentThread where
    I: Stream + 'static,
    I::Item: AsyncRead + AsyncWrite + Send + 'static,
    I::Error: Into<Box<dyn Error + Send + Sync + 'static>>,
    S: MakeServiceRef<I::Item, Request<RequestBody>, Response = Response<Bd>> + 'static,
    S::Error: Into<Box<dyn Error + Send + Sync + 'static>>,
    S::MakeError: Into<Box<dyn Error + Send + Sync + 'static>>,
    S::Future: 'static,
    S::Service: 'static,
    <S::Service as Service<Request<RequestBody>>>::Future: 'static,
    Bd: BufStream + Send + 'static,
    Bd::Item: Send,
    Bd::Error: Into<Box<dyn Error + Send + Sync + 'static>>, 
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T