pub struct PreflightCheck {
pub id: String,
pub status: String,
pub summary: String,
pub evidence_ref: Option<String>,
pub fix_actions: Option<Vec<String>>,
}Fields§
§id: String§status: String§summary: String§evidence_ref: Option<String>§fix_actions: Option<Vec<String>>Implementations§
Trait Implementations§
Source§impl Clone for PreflightCheck
impl Clone for PreflightCheck
Source§fn clone(&self) -> PreflightCheck
fn clone(&self) -> PreflightCheck
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PreflightCheck
impl Debug for PreflightCheck
Source§impl Default for PreflightCheck
impl Default for PreflightCheck
Source§fn default() -> PreflightCheck
fn default() -> PreflightCheck
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PreflightCheck
impl<'de> Deserialize<'de> for PreflightCheck
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 PreflightCheck
impl PartialEq for PreflightCheck
Source§fn eq(&self, other: &PreflightCheck) -> bool
fn eq(&self, other: &PreflightCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PreflightCheck
impl Serialize for PreflightCheck
impl StructuralPartialEq for PreflightCheck
Auto Trait Implementations§
impl Freeze for PreflightCheck
impl RefUnwindSafe for PreflightCheck
impl Send for PreflightCheck
impl Sync for PreflightCheck
impl Unpin for PreflightCheck
impl UnsafeUnpin for PreflightCheck
impl UnwindSafe for PreflightCheck
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