pub struct RotationHistory { /* private fields */ }Expand description
Rotation history
Implementations§
Source§impl RotationHistory
impl RotationHistory
pub fn new() -> Self
Sourcepub fn add_entry(&mut self, entry: RotationHistoryEntry)
pub fn add_entry(&mut self, entry: RotationHistoryEntry)
Record a rotation in the history, enforcing retention.
Sourcepub fn entry_count(&self) -> usize
pub fn entry_count(&self) -> usize
Number of recorded rotation history entries.
Sourcepub fn entries(&self) -> &[RotationHistoryEntry]
pub fn entries(&self) -> &[RotationHistoryEntry]
Iterate over history entries.
Sourcepub fn retention_policy(&self) -> &RetentionPolicy
pub fn retention_policy(&self) -> &RetentionPolicy
Get the retention policy for rotation history.
Auto Trait Implementations§
impl Freeze for RotationHistory
impl RefUnwindSafe for RotationHistory
impl Send for RotationHistory
impl Sync for RotationHistory
impl Unpin for RotationHistory
impl UnsafeUnpin for RotationHistory
impl UnwindSafe for RotationHistory
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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
§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