pub struct EnqueueAckFrame {
pub v: i64,
pub id: String,
pub ts: String,
pub ack_id: String,
pub accepted: bool,
pub reason: Option<String>,
}Fields§
§v: i64§id: String§ts: String§ack_id: String§accepted: bool§reason: Option<String>Trait Implementations§
Source§impl Clone for EnqueueAckFrame
impl Clone for EnqueueAckFrame
Source§fn clone(&self) -> EnqueueAckFrame
fn clone(&self) -> EnqueueAckFrame
Returns a duplicate of the value. Read more
1.0.0 · 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 EnqueueAckFrame
impl Debug for EnqueueAckFrame
Source§impl<'de> Deserialize<'de> for EnqueueAckFrame
impl<'de> Deserialize<'de> for EnqueueAckFrame
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
Source§impl PartialEq for EnqueueAckFrame
impl PartialEq for EnqueueAckFrame
Source§impl Serialize for EnqueueAckFrame
impl Serialize for EnqueueAckFrame
impl Eq for EnqueueAckFrame
impl StructuralPartialEq for EnqueueAckFrame
Auto Trait Implementations§
impl Freeze for EnqueueAckFrame
impl RefUnwindSafe for EnqueueAckFrame
impl Send for EnqueueAckFrame
impl Sync for EnqueueAckFrame
impl Unpin for EnqueueAckFrame
impl UnsafeUnpin for EnqueueAckFrame
impl UnwindSafe for EnqueueAckFrame
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