pub enum LoadSource {
Cache,
FallbackRebuilt,
FallbackRebuildFailed,
}Expand description
Where events were loaded from.
Variants§
Cache
Events were decoded from the binary cache (fast path).
FallbackRebuilt
Cache was stale or missing; events were parsed from TSJSON shards. The cache was rebuilt afterwards.
FallbackRebuildFailed
Cache was stale or missing; events were parsed from TSJSON shards. Cache rebuild was attempted but failed (non-fatal).
Trait Implementations§
Source§impl Clone for LoadSource
impl Clone for LoadSource
Source§fn clone(&self) -> LoadSource
fn clone(&self) -> LoadSource
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 LoadSource
impl Debug for LoadSource
Source§impl PartialEq for LoadSource
impl PartialEq for LoadSource
impl Copy for LoadSource
impl Eq for LoadSource
impl StructuralPartialEq for LoadSource
Auto Trait Implementations§
impl Freeze for LoadSource
impl RefUnwindSafe for LoadSource
impl Send for LoadSource
impl Sync for LoadSource
impl Unpin for LoadSource
impl UnsafeUnpin for LoadSource
impl UnwindSafe for LoadSource
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§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.