pub struct BoxedAsyncMakeService<S, E> { /* private fields */ }
Expand description
A type-erased wrapper for asynchronous service factories. A type-erased wrapper for asynchronous service factories.
BoxedAsyncMakeService
enables dynamic dispatch for async service factories,
allowing for flexible composition of asynchronous service creation pipelines.
Implementations§
Source§impl<S, E> BoxedAsyncMakeService<S, E>
impl<S, E> BoxedAsyncMakeService<S, E>
Trait Implementations§
Source§impl<S, E> AsyncMakeService for BoxedAsyncMakeService<S, E>
impl<S, E> AsyncMakeService for BoxedAsyncMakeService<S, E>
Source§impl<S, E> Drop for BoxedAsyncMakeService<S, E>
impl<S, E> Drop for BoxedAsyncMakeService<S, E>
impl<S, E> Send for BoxedAsyncMakeService<S, E>
impl<S, E> Sync for BoxedAsyncMakeService<S, E>
Auto Trait Implementations§
impl<S, E> Freeze for BoxedAsyncMakeService<S, E>
impl<S, E> RefUnwindSafe for BoxedAsyncMakeService<S, E>
impl<S, E> Unpin for BoxedAsyncMakeService<S, E>
impl<S, E> UnwindSafe for BoxedAsyncMakeService<S, 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