pub struct Request { /* private fields */ }Expand description
A pending request for a broadcast that was not announced.
Yielded by Dynamic::requested_broadcast. The requester is awaiting inside
Consumer::request_broadcast; accept resolves it with a live
broadcast (which the handler keeps producing into) and reject resolves
it with an error. Dropping the request without either rejects it.
Implementations§
Source§impl Request
impl Request
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnsafeUnpin for Request
impl UnwindSafe for Request
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