pub struct EnrollmentCommit<F> {
pub member: LiveMember<F>,
pub binding_state: BindingState,
pub attached: AttachedLifecycleRecord,
pub outcome: EnrollBound,
/* private fields */
}Expand description
Complete atomic enrollment result.
Fields§
§member: LiveMember<F>New durable generation-one membership.
binding_state: BindingStateNew authoritative binding slot.
attached: AttachedLifecycleRecordExact committed Attached lifecycle fact.
outcome: EnrollBoundExact canonical enrollment receipt.
Trait Implementations§
Source§impl<F: Clone> Clone for EnrollmentCommit<F>
impl<F: Clone> Clone for EnrollmentCommit<F>
Source§fn clone(&self) -> EnrollmentCommit<F>
fn clone(&self) -> EnrollmentCommit<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 EnrollmentCommit<F>
impl<F: Debug> Debug for EnrollmentCommit<F>
impl<F: Eq> Eq for EnrollmentCommit<F>
Source§impl<F: PartialEq> PartialEq for EnrollmentCommit<F>
impl<F: PartialEq> PartialEq for EnrollmentCommit<F>
impl<F: PartialEq> StructuralPartialEq for EnrollmentCommit<F>
Auto Trait Implementations§
impl<F> Freeze for EnrollmentCommit<F>where
F: Freeze,
impl<F> RefUnwindSafe for EnrollmentCommit<F>where
F: RefUnwindSafe,
impl<F> Send for EnrollmentCommit<F>where
F: Send,
impl<F> Sync for EnrollmentCommit<F>where
F: Sync,
impl<F> Unpin for EnrollmentCommit<F>where
F: Unpin,
impl<F> UnsafeUnpin for EnrollmentCommit<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for EnrollmentCommit<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