pub struct DeadCodeAnalysis {
pub dead_code: Vec<DeadCode>,
pub stats: DeadCodeStats,
pub files_analyzed: usize,
pub total_lines: usize,
}Expand description
Dead code analysis result for a Perl workspace
Fields§
§dead_code: Vec<DeadCode>List of all dead code instances found
stats: DeadCodeStatsStatistical summary of dead code analysis
files_analyzed: usizeNumber of files analyzed in the workspace
total_lines: usizeTotal lines of code analyzed
Trait Implementations§
Source§impl Debug for DeadCodeAnalysis
impl Debug for DeadCodeAnalysis
Source§impl<'de> Deserialize<'de> for DeadCodeAnalysis
impl<'de> Deserialize<'de> for DeadCodeAnalysis
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 DeadCodeAnalysis
impl RefUnwindSafe for DeadCodeAnalysis
impl Send for DeadCodeAnalysis
impl Sync for DeadCodeAnalysis
impl Unpin for DeadCodeAnalysis
impl UnsafeUnpin for DeadCodeAnalysis
impl UnwindSafe for DeadCodeAnalysis
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