pub struct ParticipantAckEnvelope {
pub conversation_id: ConversationId,
pub participant_id: ParticipantId,
pub capability_generation: Generation,
pub through_seq: DeliverySeq,
}Expand description
Continuous-ack response common envelope.
Fields§
§conversation_id: ConversationIdConversation from the request.
participant_id: ParticipantIdParticipant from the request.
capability_generation: GenerationPresented generation.
through_seq: DeliverySeqRequested cumulative boundary.
Trait Implementations§
Source§impl Clone for ParticipantAckEnvelope
impl Clone for ParticipantAckEnvelope
Source§fn clone(&self) -> ParticipantAckEnvelope
fn clone(&self) -> ParticipantAckEnvelope
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 ParticipantAckEnvelope
impl Debug for ParticipantAckEnvelope
impl Eq for ParticipantAckEnvelope
Source§impl PartialEq for ParticipantAckEnvelope
impl PartialEq for ParticipantAckEnvelope
impl StructuralPartialEq for ParticipantAckEnvelope
Auto Trait Implementations§
impl Freeze for ParticipantAckEnvelope
impl RefUnwindSafe for ParticipantAckEnvelope
impl Send for ParticipantAckEnvelope
impl Sync for ParticipantAckEnvelope
impl Unpin for ParticipantAckEnvelope
impl UnsafeUnpin for ParticipantAckEnvelope
impl UnwindSafe for ParticipantAckEnvelope
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