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§
Source§impl Filed
impl Filed
pub fn url(&self) -> Option<&str>
Sourcepub fn issue(&self) -> i64
pub fn issue(&self) -> i64
The issue this went to, whatever state it is in. number answers the
narrower question of what there is to work.
Sourcepub fn note(&self) -> String
pub fn note(&self) -> String
One clause saying where it went, for a log line or an archive entry.
pub fn describe(&self, title: &str) -> String
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