pub struct DetachInProgress {
pub conversation_id: ConversationId,
pub participant_id: ParticipantId,
pub presented_token: DetachAttemptToken,
pub presented_generation: Generation,
pub committed_binding_epoch: BindingEpoch,
}Expand description
Different detach token encountered an existing pending cell.
Fields§
§conversation_id: ConversationIdConversation from the competing request.
participant_id: ParticipantIdParticipant from the competing request.
presented_token: DetachAttemptTokenCompeting presented token; stored token is never disclosed.
presented_generation: GenerationCompeting presented generation.
committed_binding_epoch: BindingEpochBinding epoch being terminalized by the pending cell.
Trait Implementations§
Source§impl Clone for DetachInProgress
impl Clone for DetachInProgress
Source§fn clone(&self) -> DetachInProgress
fn clone(&self) -> DetachInProgress
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 DetachInProgress
impl Debug for DetachInProgress
impl Eq for DetachInProgress
Source§impl PartialEq for DetachInProgress
impl PartialEq for DetachInProgress
impl StructuralPartialEq for DetachInProgress
Auto Trait Implementations§
impl Freeze for DetachInProgress
impl RefUnwindSafe for DetachInProgress
impl Send for DetachInProgress
impl Sync for DetachInProgress
impl Unpin for DetachInProgress
impl UnsafeUnpin for DetachInProgress
impl UnwindSafe for DetachInProgress
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