pub enum StatsSource {
ProviderApi,
LocalLogScraper,
Unavailable,
}Variants§
ProviderApi
Fetched from provider org API with admin key
LocalLogScraper
Parsed from ~/.claude/ session JSONL files
No data available
Trait Implementations§
Source§impl Clone for StatsSource
impl Clone for StatsSource
Source§fn clone(&self) -> StatsSource
fn clone(&self) -> StatsSource
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 StatsSource
impl Debug for StatsSource
Source§impl<'de> Deserialize<'de> for StatsSource
impl<'de> Deserialize<'de> for StatsSource
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StatsSource
impl RefUnwindSafe for StatsSource
impl Send for StatsSource
impl Sync for StatsSource
impl Unpin for StatsSource
impl UnsafeUnpin for StatsSource
impl UnwindSafe for StatsSource
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