pub struct LangPurityRow {
pub module: String,
pub lang_count: usize,
pub dominant_lang: String,
pub dominant_lines: usize,
pub dominant_pct: f64,
}Fields§
§module: String§lang_count: usize§dominant_lang: String§dominant_lines: usize§dominant_pct: f64Trait Implementations§
Source§impl Clone for LangPurityRow
impl Clone for LangPurityRow
Source§fn clone(&self) -> LangPurityRow
fn clone(&self) -> LangPurityRow
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 LangPurityRow
impl Debug for LangPurityRow
Source§impl<'de> Deserialize<'de> for LangPurityRow
impl<'de> Deserialize<'de> for LangPurityRow
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 LangPurityRow
impl RefUnwindSafe for LangPurityRow
impl Send for LangPurityRow
impl Sync for LangPurityRow
impl Unpin for LangPurityRow
impl UnsafeUnpin for LangPurityRow
impl UnwindSafe for LangPurityRow
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