pub struct UnsyncBoxService<T, U, E> { /* private fields */ }
Expand description
A boxed Service
trait object.
Implementations§
Trait Implementations§
Source§impl<T, U, E> Debug for UnsyncBoxService<T, U, E>
impl<T, U, E> Debug for UnsyncBoxService<T, U, E>
Auto Trait Implementations§
impl<T, U, E> Freeze for UnsyncBoxService<T, U, E>
impl<T, U, E> !RefUnwindSafe for UnsyncBoxService<T, U, E>
impl<T, U, E> !Send for UnsyncBoxService<T, U, E>
impl<T, U, E> !Sync for UnsyncBoxService<T, U, E>
impl<T, U, E> Unpin for UnsyncBoxService<T, U, E>
impl<T, U, E> !UnwindSafe for UnsyncBoxService<T, U, E>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T, Request> ServiceExt<Request> for T
impl<T, Request> ServiceExt<Request> for T
Source§fn ready(&mut self) -> Ready<'_, Self, Request> ⓘwhere
Self: Sized,
fn ready(&mut self) -> Ready<'_, Self, Request> ⓘwhere
Self: Sized,
👎Deprecated since 0.3.1: prefer
ready_and
which yields the serviceResolves when the service is ready to accept a request.
Source§fn ready_and(&mut self) -> ReadyAnd<'_, Self, Request> ⓘwhere
Self: Sized,
fn ready_and(&mut self) -> ReadyAnd<'_, Self, Request> ⓘwhere
Self: Sized,
Yields a mutable reference to the service when it is ready to accept a request.
Source§fn ready_oneshot(self) -> ReadyOneshot<Self, Request> ⓘwhere
Self: Sized,
fn ready_oneshot(self) -> ReadyOneshot<Self, Request> ⓘwhere
Self: Sized,
Yields the service when it is ready to accept a request.