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