pub struct ParticipantAck {
pub conversation_id: ConversationId,
pub participant_id: ParticipantId,
pub capability_generation: Generation,
pub through_seq: DeliverySeq,
}Expand description
Continuous cumulative acknowledgement body (0x0004).
Fields§
§conversation_id: ConversationIdConversation containing the participant.
participant_id: ParticipantIdPermanent participant identity.
capability_generation: GenerationPresented nonzero credential generation.
through_seq: DeliverySeqGreatest continuously available sequence being acknowledged.
Trait Implementations§
Source§impl Clone for ParticipantAck
impl Clone for ParticipantAck
Source§fn clone(&self) -> ParticipantAck
fn clone(&self) -> ParticipantAck
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 ParticipantAck
impl Debug for ParticipantAck
impl Eq for ParticipantAck
Source§impl PartialEq for ParticipantAck
impl PartialEq for ParticipantAck
impl StructuralPartialEq for ParticipantAck
Auto Trait Implementations§
impl Freeze for ParticipantAck
impl RefUnwindSafe for ParticipantAck
impl Send for ParticipantAck
impl Sync for ParticipantAck
impl Unpin for ParticipantAck
impl UnsafeUnpin for ParticipantAck
impl UnwindSafe for ParticipantAck
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