pub struct QueueAckReply {
pub error: Option<String>,
}Expand description
Response to QueueAckRequest.
Fields§
§error: Option<String>Set when ack failed (unknown lease, wrong worker, etc.).
Trait Implementations§
Source§impl Clone for QueueAckReply
impl Clone for QueueAckReply
Source§fn clone(&self) -> QueueAckReply
fn clone(&self) -> QueueAckReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueueAckReply
impl Debug for QueueAckReply
Source§impl<'de> Deserialize<'de> for QueueAckReply
impl<'de> Deserialize<'de> for QueueAckReply
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for QueueAckReply
Source§impl PartialEq for QueueAckReply
impl PartialEq for QueueAckReply
Source§impl Serialize for QueueAckReply
impl Serialize for QueueAckReply
impl StructuralPartialEq for QueueAckReply
Auto Trait Implementations§
impl Freeze for QueueAckReply
impl RefUnwindSafe for QueueAckReply
impl Send for QueueAckReply
impl Sync for QueueAckReply
impl Unpin for QueueAckReply
impl UnsafeUnpin for QueueAckReply
impl UnwindSafe for QueueAckReply
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