pub struct TechDebtAnalysis {
pub entries: Vec<TechDebtEntry>,
pub avg_score: f64,
pub high_debt_count: usize,
pub total_files_analyzed: usize,
}Expand description
技術的負債分析結果
Fields§
§entries: Vec<TechDebtEntry>エントリ一覧(スコア降順)
avg_score: f64平均スコア
high_debt_count: usize高負債ファイル数
total_files_analyzed: usize分析されたファイル数
Implementations§
Source§impl TechDebtAnalysis
impl TechDebtAnalysis
Sourcepub fn entry_count(&self) -> usize
pub fn entry_count(&self) -> usize
エントリ数を取得
Trait Implementations§
Source§impl Clone for TechDebtAnalysis
impl Clone for TechDebtAnalysis
Source§fn clone(&self) -> TechDebtAnalysis
fn clone(&self) -> TechDebtAnalysis
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 TechDebtAnalysis
impl Debug for TechDebtAnalysis
Source§impl Default for TechDebtAnalysis
impl Default for TechDebtAnalysis
Source§fn default() -> TechDebtAnalysis
fn default() -> TechDebtAnalysis
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TechDebtAnalysis
impl RefUnwindSafe for TechDebtAnalysis
impl Send for TechDebtAnalysis
impl Sync for TechDebtAnalysis
impl Unpin for TechDebtAnalysis
impl UnwindSafe for TechDebtAnalysis
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more