pub struct TimekeeperProof {
pub slot: SlotNumber,
pub seed: PotSeed,
pub slot_iterations: NonZeroU32,
pub checkpoints: PotCheckpoints,
}Expand description
Poof generated by timekeeper
Fields§
§slot: SlotNumberSlot number
seed: PotSeedProof of time seed
slot_iterations: NonZeroU32Iterations per slot
checkpoints: PotCheckpointsProof of time checkpoints
Trait Implementations§
Source§impl Clone for TimekeeperProof
impl Clone for TimekeeperProof
Source§fn clone(&self) -> TimekeeperProof
fn clone(&self) -> TimekeeperProof
Returns a duplicate of the value. Read more
1.0.0 · 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 TimekeeperProof
impl Debug for TimekeeperProof
impl Copy for TimekeeperProof
Auto Trait Implementations§
impl Freeze for TimekeeperProof
impl RefUnwindSafe for TimekeeperProof
impl Send for TimekeeperProof
impl Sync for TimekeeperProof
impl Unpin for TimekeeperProof
impl UnwindSafe for TimekeeperProof
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more