pub struct FixSummary {
pub fix_id: String,
pub sensor_id: String,
pub safety: SafetyLevel,
pub description: String,
pub matched_findings: Vec<MatchedFinding>,
pub unmatched: bool,
}Expand description
Summary of a single fix for cockpit surfacing.
Fields§
§fix_id: String§sensor_id: String§safety: SafetyLevel§description: String§matched_findings: Vec<MatchedFinding>§unmatched: boolTrait Implementations§
Source§impl Clone for FixSummary
impl Clone for FixSummary
Source§fn clone(&self) -> FixSummary
fn clone(&self) -> FixSummary
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 moreSource§impl Debug for FixSummary
impl Debug for FixSummary
Source§impl<'de> Deserialize<'de> for FixSummary
impl<'de> Deserialize<'de> for FixSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FixSummary
impl PartialEq for FixSummary
Source§impl Serialize for FixSummary
impl Serialize for FixSummary
impl Eq for FixSummary
impl StructuralPartialEq for FixSummary
Auto Trait Implementations§
impl Freeze for FixSummary
impl RefUnwindSafe for FixSummary
impl Send for FixSummary
impl Sync for FixSummary
impl Unpin for FixSummary
impl UnsafeUnpin for FixSummary
impl UnwindSafe for FixSummary
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