pub struct ProviderRecord {
pub cid_str: String,
pub provided_at_secs: u64,
pub last_renewal_secs: u64,
pub renewal_count: u64,
}Expand description
State for a single provided CID tracked by the scheduler.
Fields§
§cid_str: StringString representation of the CID.
provided_at_secs: u64Unix timestamp (seconds) at which track() was first called.
last_renewal_secs: u64Unix timestamp (seconds) of the most recent successful renewal.
0 means the record has never been explicitly renewed since tracking
began.
renewal_count: u64How many times this record has been successfully renewed.
Implementations§
Source§impl ProviderRecord
impl ProviderRecord
Sourcepub fn new(cid_str: impl Into<String>, now_secs: u64) -> Self
pub fn new(cid_str: impl Into<String>, now_secs: u64) -> Self
Create a new record anchored at now_secs.
Sourcepub fn needs_renewal(&self, now_secs: u64, config: &RenewalConfig) -> bool
pub fn needs_renewal(&self, now_secs: u64, config: &RenewalConfig) -> bool
Returns true when the record is old enough to require renewal.
Age is measured from the later of provided_at_secs and
last_renewal_secs (treating 0 as “never renewed”).
Sourcepub fn mark_renewed(&mut self, now_secs: u64)
pub fn mark_renewed(&mut self, now_secs: u64)
Update the record after a successful renewal.
Trait Implementations§
Source§impl Clone for ProviderRecord
impl Clone for ProviderRecord
Source§fn clone(&self) -> ProviderRecord
fn clone(&self) -> ProviderRecord
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 moreAuto Trait Implementations§
impl Freeze for ProviderRecord
impl RefUnwindSafe for ProviderRecord
impl Send for ProviderRecord
impl Sync for ProviderRecord
impl Unpin for ProviderRecord
impl UnsafeUnpin for ProviderRecord
impl UnwindSafe for ProviderRecord
Blanket Implementations§
impl<T> Allocation for T
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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