pub struct EnrollmentCommitParameters<F, P> {
pub allocated_slot: AllocatedParticipantSlot<P>,
pub attach_secret: AttachSecret,
pub origin_binding_epoch: BindingEpoch,
pub attached_position: AttachedRecordPosition,
pub receipt_expires_at: u128,
pub provenance_expires_at: u128,
pub enrollment_fingerprint: EnrollmentFingerprint<F>,
}Expand description
Values allocated by one successful enrollment transaction.
Fields§
§allocated_slot: AllocatedParticipantSlot<P>Consumed permanent identity reservation.
attach_secret: AttachSecretNewly minted generation-one attach secret.
origin_binding_epoch: BindingEpochNew generation-one binding epoch.
attached_position: AttachedRecordPositionAssigned Attached record position.
receipt_expires_at: u128Live receipt deadline.
provenance_expires_at: u128Provenance deadline.
enrollment_fingerprint: EnrollmentFingerprint<F>Permanent enrollment-token mapping fingerprint.
Trait Implementations§
Source§impl<F: Clone, P: Clone> Clone for EnrollmentCommitParameters<F, P>
impl<F: Clone, P: Clone> Clone for EnrollmentCommitParameters<F, P>
Source§fn clone(&self) -> EnrollmentCommitParameters<F, P>
fn clone(&self) -> EnrollmentCommitParameters<F, P>
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 moreimpl<F: Eq, P: Eq> Eq for EnrollmentCommitParameters<F, P>
impl<F: PartialEq, P: PartialEq> StructuralPartialEq for EnrollmentCommitParameters<F, P>
Auto Trait Implementations§
impl<F, P> Freeze for EnrollmentCommitParameters<F, P>
impl<F, P> RefUnwindSafe for EnrollmentCommitParameters<F, P>where
P: RefUnwindSafe,
F: RefUnwindSafe,
impl<F, P> Send for EnrollmentCommitParameters<F, P>
impl<F, P> Sync for EnrollmentCommitParameters<F, P>
impl<F, P> Unpin for EnrollmentCommitParameters<F, P>
impl<F, P> UnsafeUnpin for EnrollmentCommitParameters<F, P>where
P: UnsafeUnpin,
F: UnsafeUnpin,
impl<F, P> UnwindSafe for EnrollmentCommitParameters<F, P>where
P: UnwindSafe,
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