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