pub struct AttachEnvelope {
pub conversation_id: ConversationId,
pub participant_id: ParticipantId,
pub capability_generation: Generation,
pub attach_attempt_token: AttachAttemptToken,
pub accept_marker_delivery_seq: Option<DeliverySeq>,
}Expand description
Credential-attach response common envelope; the secret is deliberately absent.
Fields§
§conversation_id: ConversationIdConversation from the request.
participant_id: ParticipantIdParticipant from the request.
capability_generation: GenerationPresented generation.
attach_attempt_token: AttachAttemptTokenAttach token from the request.
accept_marker_delivery_seq: Option<DeliverySeq>Presented marker option.
Trait Implementations§
Source§impl Clone for AttachEnvelope
impl Clone for AttachEnvelope
Source§fn clone(&self) -> AttachEnvelope
fn clone(&self) -> AttachEnvelope
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 AttachEnvelope
impl Debug for AttachEnvelope
impl Eq for AttachEnvelope
Source§impl PartialEq for AttachEnvelope
impl PartialEq for AttachEnvelope
impl StructuralPartialEq for AttachEnvelope
Auto Trait Implementations§
impl Freeze for AttachEnvelope
impl RefUnwindSafe for AttachEnvelope
impl Send for AttachEnvelope
impl Sync for AttachEnvelope
impl Unpin for AttachEnvelope
impl UnsafeUnpin for AttachEnvelope
impl UnwindSafe for AttachEnvelope
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