pub struct DegradationIssue {
pub phase: String,
pub message: String,
pub impact: String,
}Expand description
A single non-fatal issue recorded during analysis.
Fields§
§phase: StringShort pipeline phase tag: “TD”, “SD”, “BU”, “CSS”, “LLM”.
message: StringWhat happened (technical, concise).
impact: StringWhat the user is missing as a result (user-facing, actionable).
Trait Implementations§
Source§impl Clone for DegradationIssue
impl Clone for DegradationIssue
Source§fn clone(&self) -> DegradationIssue
fn clone(&self) -> DegradationIssue
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 moreAuto Trait Implementations§
impl Freeze for DegradationIssue
impl RefUnwindSafe for DegradationIssue
impl Send for DegradationIssue
impl Sync for DegradationIssue
impl Unpin for DegradationIssue
impl UnsafeUnpin for DegradationIssue
impl UnwindSafe for DegradationIssue
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