pub struct SimulationFinding {
pub severity: FindingSeverity,
pub category: &'static str,
pub message: String,
pub suggestion: Option<String>,
}Expand description
A single simulation finding.
Fields§
§severity: FindingSeverity§category: &'static str§message: String§suggestion: Option<String>Trait Implementations§
Source§impl Clone for SimulationFinding
impl Clone for SimulationFinding
Source§fn clone(&self) -> SimulationFinding
fn clone(&self) -> SimulationFinding
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 SimulationFinding
impl RefUnwindSafe for SimulationFinding
impl Send for SimulationFinding
impl Sync for SimulationFinding
impl Unpin for SimulationFinding
impl UnsafeUnpin for SimulationFinding
impl UnwindSafe for SimulationFinding
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