pub struct ResponseQueue { /* private fields */ }Expand description
Thread-local queue for deferred async responses.
Used by ServerContext implementations (basalt-server) to collect
deferred operations during handler dispatch. Visibility is pub
so that the production ServerContext in basalt-server can
construct and read from it.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for ResponseQueue
impl !RefUnwindSafe for ResponseQueue
impl Send for ResponseQueue
impl !Sync for ResponseQueue
impl Unpin for ResponseQueue
impl UnsafeUnpin for ResponseQueue
impl UnwindSafe for ResponseQueue
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