pub struct CliCacheEntry {
pub path: String,
pub hash: String,
pub line_count: usize,
pub original_tokens: usize,
pub timestamp: u64,
pub read_count: u32,
}Fields§
§path: String§hash: String§line_count: usize§original_tokens: usize§timestamp: u64§read_count: u32Trait Implementations§
Source§impl Clone for CliCacheEntry
impl Clone for CliCacheEntry
Source§fn clone(&self) -> CliCacheEntry
fn clone(&self) -> CliCacheEntry
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 CliCacheEntry
impl Debug for CliCacheEntry
Source§impl<'de> Deserialize<'de> for CliCacheEntry
impl<'de> Deserialize<'de> for CliCacheEntry
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 CliCacheEntry
impl RefUnwindSafe for CliCacheEntry
impl Send for CliCacheEntry
impl Sync for CliCacheEntry
impl Unpin for CliCacheEntry
impl UnsafeUnpin for CliCacheEntry
impl UnwindSafe for CliCacheEntry
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