pub struct LanguageStats {
pub ext: String,
pub count: usize,
pub total_tokens: usize,
}Fields§
§ext: String§count: usize§total_tokens: usizeTrait Implementations§
Source§impl Clone for LanguageStats
impl Clone for LanguageStats
Source§fn clone(&self) -> LanguageStats
fn clone(&self) -> LanguageStats
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 moreAuto Trait Implementations§
impl Freeze for LanguageStats
impl RefUnwindSafe for LanguageStats
impl Send for LanguageStats
impl Sync for LanguageStats
impl Unpin for LanguageStats
impl UnsafeUnpin for LanguageStats
impl UnwindSafe for LanguageStats
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