pub struct QueueNackReply {
pub error: Option<String>,
}Expand description
Response to QueueNackRequest.
Fields§
§error: Option<String>Set when nack failed.
Trait Implementations§
Source§impl Clone for QueueNackReply
impl Clone for QueueNackReply
Source§fn clone(&self) -> QueueNackReply
fn clone(&self) -> QueueNackReply
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 QueueNackReply
impl Debug for QueueNackReply
Source§impl<'de> Deserialize<'de> for QueueNackReply
impl<'de> Deserialize<'de> for QueueNackReply
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 QueueNackReply
Source§impl PartialEq for QueueNackReply
impl PartialEq for QueueNackReply
Source§impl Serialize for QueueNackReply
impl Serialize for QueueNackReply
impl StructuralPartialEq for QueueNackReply
Auto Trait Implementations§
impl Freeze for QueueNackReply
impl RefUnwindSafe for QueueNackReply
impl Send for QueueNackReply
impl Sync for QueueNackReply
impl Unpin for QueueNackReply
impl UnsafeUnpin for QueueNackReply
impl UnwindSafe for QueueNackReply
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