pub struct Issue {
pub severity: IssueSeverity,
pub description: String,
pub source: String,
pub resolution: Option<String>,
}Expand description
Identified issue or blocker
Fields§
§severity: IssueSeverityIssue severity level
description: StringIssue description
source: StringSource where issue was identified
resolution: Option<String>Suggested resolution
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Issue
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnwindSafe for Issue
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