pub struct LiveIdentityRestore<EF> {
pub participant_id: ParticipantId,
pub conversation_id: ConversationId,
pub generation: Generation,
pub attach_secret: AttachSecret,
pub cursor: DeliverySeq,
pub enrollment_fingerprint: EnrollmentFingerprint<EF>,
pub latest_terminal: Option<CommittedBindingTerminalRestore>,
}Expand description
Raw durable fields for the latest committed terminal retained by membership.
Fields§
§participant_id: ParticipantIdPermanent participant identity/index.
conversation_id: ConversationIdOwning conversation.
generation: GenerationCurrent credential generation.
attach_secret: AttachSecretCurrent attach secret.
cursor: DeliverySeqDurable cumulative participant cursor.
enrollment_fingerprint: EnrollmentFingerprint<EF>Permanent enrollment-token fingerprint.
latest_terminal: Option<CommittedBindingTerminalRestore>Most recent committed binding terminal, if any.
Trait Implementations§
Source§impl<EF: Clone> Clone for LiveIdentityRestore<EF>
impl<EF: Clone> Clone for LiveIdentityRestore<EF>
Source§fn clone(&self) -> LiveIdentityRestore<EF>
fn clone(&self) -> LiveIdentityRestore<EF>
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<EF: Debug> Debug for LiveIdentityRestore<EF>
impl<EF: Debug> Debug for LiveIdentityRestore<EF>
impl<EF: Eq> Eq for LiveIdentityRestore<EF>
Source§impl<EF: PartialEq> PartialEq for LiveIdentityRestore<EF>
impl<EF: PartialEq> PartialEq for LiveIdentityRestore<EF>
impl<EF: PartialEq> StructuralPartialEq for LiveIdentityRestore<EF>
Auto Trait Implementations§
impl<EF> Freeze for LiveIdentityRestore<EF>where
EF: Freeze,
impl<EF> RefUnwindSafe for LiveIdentityRestore<EF>where
EF: RefUnwindSafe,
impl<EF> Send for LiveIdentityRestore<EF>where
EF: Send,
impl<EF> Sync for LiveIdentityRestore<EF>where
EF: Sync,
impl<EF> Unpin for LiveIdentityRestore<EF>where
EF: Unpin,
impl<EF> UnsafeUnpin for LiveIdentityRestore<EF>where
EF: UnsafeUnpin,
impl<EF> UnwindSafe for LiveIdentityRestore<EF>where
EF: UnwindSafe,
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