pub struct DeliverAckFrame {
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 DeliverAckFrame
impl Clone for DeliverAckFrame
Source§fn clone(&self) -> DeliverAckFrame
fn clone(&self) -> DeliverAckFrame
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 DeliverAckFrame
impl Debug for DeliverAckFrame
Source§impl<'de> Deserialize<'de> for DeliverAckFrame
impl<'de> Deserialize<'de> for DeliverAckFrame
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 DeliverAckFrame
impl PartialEq for DeliverAckFrame
Source§impl Serialize for DeliverAckFrame
impl Serialize for DeliverAckFrame
impl Eq for DeliverAckFrame
impl StructuralPartialEq for DeliverAckFrame
Auto Trait Implementations§
impl Freeze for DeliverAckFrame
impl RefUnwindSafe for DeliverAckFrame
impl Send for DeliverAckFrame
impl Sync for DeliverAckFrame
impl Unpin for DeliverAckFrame
impl UnsafeUnpin for DeliverAckFrame
impl UnwindSafe for DeliverAckFrame
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