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