pub enum Sent {
Ack,
Response(CanonicalMessage),
}Expand description
The outcome of a successful single message publishing operation.
Variants§
Ack
Message was successfully sent, no response was generated.
Response(CanonicalMessage)
Message was successfully sent and a response was generated.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Sent
impl RefUnwindSafe for Sent
impl Send for Sent
impl Sync for Sent
impl Unpin for Sent
impl UnsafeUnpin for Sent
impl UnwindSafe for Sent
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