pub struct Case {
pub id: String,
pub state: Option<String>,
pub filing: Option<String>,
pub upstream: Option<String>,
pub path: String,
}Expand description
One known-issue record, as sdd ki list reports it.
Fields§
§id: StringThe case id: the filename without its extension.
state: Option<String>How this project handles the defect, where the record states it.
filing: Option<String>Where the case stands upstream, where the record states it.
upstream: Option<String>The upstream issue or tracker, where the record names one.
path: StringThe record’s path, relative to the target.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Case
impl RefUnwindSafe for Case
impl Send for Case
impl Sync for Case
impl Unpin for Case
impl UnsafeUnpin for Case
impl UnwindSafe for Case
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