pub enum ActiveTimeDataSource {
Bundled,
RuntimeCache,
Override,
}Expand description
Source of the currently active time-data bundle.
Variants§
Bundled
The compiled archive snapshot bundled into siderust-archive.
RuntimeCache
A bundle loaded through the runtime fetch/cache path.
This value intentionally does not distinguish cache hit from fresh
download; siderust-archive owns the fetch/cache mechanics and
provenance timestamp.
Override
A test or caller-provided override is active.
Trait Implementations§
Source§impl Clone for ActiveTimeDataSource
impl Clone for ActiveTimeDataSource
Source§fn clone(&self) -> ActiveTimeDataSource
fn clone(&self) -> ActiveTimeDataSource
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 Debug for ActiveTimeDataSource
impl Debug for ActiveTimeDataSource
Source§impl PartialEq for ActiveTimeDataSource
impl PartialEq for ActiveTimeDataSource
Source§fn eq(&self, other: &ActiveTimeDataSource) -> bool
fn eq(&self, other: &ActiveTimeDataSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ActiveTimeDataSource
impl Eq for ActiveTimeDataSource
impl StructuralPartialEq for ActiveTimeDataSource
Auto Trait Implementations§
impl Freeze for ActiveTimeDataSource
impl RefUnwindSafe for ActiveTimeDataSource
impl Send for ActiveTimeDataSource
impl Sync for ActiveTimeDataSource
impl Unpin for ActiveTimeDataSource
impl UnsafeUnpin for ActiveTimeDataSource
impl UnwindSafe for ActiveTimeDataSource
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.