pub enum Filed {
Opened(i64, String),
AddedTo(i64, String),
Covered(i64, String),
AlreadyClosed(i64, String),
}Expand description
What happened to one finding on the way to the tracker.
Variants§
Opened(i64, String)
A new issue.
AddedTo(i64, String)
An open issue already covered it, and this pass had something to add.
Covered(i64, String)
An open issue already covered it, and this pass added nothing.
AlreadyClosed(i64, String)
A closed issue already covered it. Nothing was written.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Filed
impl RefUnwindSafe for Filed
impl Send for Filed
impl Sync for Filed
impl Unpin for Filed
impl UnsafeUnpin for Filed
impl UnwindSafe for Filed
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