pub struct ProblematicFile {
pub path: PathBuf,
pub issue_count: usize,
pub max_severity: IssueSeverity,
}Expand description
Information about a file with many issues.
Fields§
§path: PathBufPath to the file
issue_count: usizeNumber of issues in this file
max_severity: IssueSeverityMost severe issue in this file
Trait Implementations§
Source§impl Clone for ProblematicFile
impl Clone for ProblematicFile
Source§fn clone(&self) -> ProblematicFile
fn clone(&self) -> ProblematicFile
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 ProblematicFile
impl Debug for ProblematicFile
Source§impl<'de> Deserialize<'de> for ProblematicFile
impl<'de> Deserialize<'de> for ProblematicFile
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 ProblematicFile
impl RefUnwindSafe for ProblematicFile
impl Send for ProblematicFile
impl Sync for ProblematicFile
impl Unpin for ProblematicFile
impl UnsafeUnpin for ProblematicFile
impl UnwindSafe for ProblematicFile
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