pub struct NoResponse;
Expand description
Message response for fire-and-forget messages with no output.
There is no sender associated to this response. When implementing FromMessage
, the sender
can be ignored.
See FromMessage
and Service
for implementation advice and examples.
Trait Implementations§
source§impl Debug for NoResponse
impl Debug for NoResponse
source§impl MessageResponse for NoResponse
impl MessageResponse for NoResponse
Auto Trait Implementations§
impl Freeze for NoResponse
impl RefUnwindSafe for NoResponse
impl Send for NoResponse
impl Sync for NoResponse
impl Unpin for NoResponse
impl UnwindSafe for NoResponse
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