pub struct LiveMemberRestore<F> {
pub participant_id: ParticipantId,
pub conversation_id: ConversationId,
pub generation: Generation,
pub attach_secret: AttachSecret,
pub cursor: DeliverySeq,
pub enrollment_fingerprint: EnrollmentFingerprint<F>,
pub latest_terminal: Option<CommittedBindingTerminal>,
}Expand description
Complete persistence input for restoring one live member.
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<F>Permanent enrollment-token fingerprint.
latest_terminal: Option<CommittedBindingTerminal>Most recent committed binding terminal, if any.
Trait Implementations§
Source§impl<F: Clone> Clone for LiveMemberRestore<F>
impl<F: Clone> Clone for LiveMemberRestore<F>
Source§fn clone(&self) -> LiveMemberRestore<F>
fn clone(&self) -> LiveMemberRestore<F>
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<F: Debug> Debug for LiveMemberRestore<F>
impl<F: Debug> Debug for LiveMemberRestore<F>
impl<F: Eq> Eq for LiveMemberRestore<F>
Source§impl<F: PartialEq> PartialEq for LiveMemberRestore<F>
impl<F: PartialEq> PartialEq for LiveMemberRestore<F>
impl<F: PartialEq> StructuralPartialEq for LiveMemberRestore<F>
Auto Trait Implementations§
impl<F> Freeze for LiveMemberRestore<F>where
F: Freeze,
impl<F> RefUnwindSafe for LiveMemberRestore<F>where
F: RefUnwindSafe,
impl<F> Send for LiveMemberRestore<F>where
F: Send,
impl<F> Sync for LiveMemberRestore<F>where
F: Sync,
impl<F> Unpin for LiveMemberRestore<F>where
F: Unpin,
impl<F> UnsafeUnpin for LiveMemberRestore<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for LiveMemberRestore<F>where
F: 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