pub struct VerificationCheck {
pub name: String,
pub status: String,
pub clean: bool,
pub summary: String,
pub recommended_action: Option<String>,
pub recommended_action_template: Option<ActionTemplate>,
pub recovery_commands: Vec<String>,
pub recovery_action_templates: Vec<ActionTemplate>,
pub details: BTreeMap<String, String>,
}Fields§
§name: String§status: String§clean: bool§summary: String§recommended_action: Option<String>§recommended_action_template: Option<ActionTemplate>§recovery_commands: Vec<String>§recovery_action_templates: Vec<ActionTemplate>§details: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for VerificationCheck
impl Clone for VerificationCheck
Source§fn clone(&self) -> VerificationCheck
fn clone(&self) -> VerificationCheck
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 VerificationCheck
impl Debug for VerificationCheck
impl Eq for VerificationCheck
Source§impl JsonSchema for VerificationCheck
impl JsonSchema for VerificationCheck
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for VerificationCheck
impl PartialEq for VerificationCheck
Source§fn eq(&self, other: &VerificationCheck) -> bool
fn eq(&self, other: &VerificationCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VerificationCheck
impl Serialize for VerificationCheck
impl StructuralPartialEq for VerificationCheck
Auto Trait Implementations§
impl Freeze for VerificationCheck
impl RefUnwindSafe for VerificationCheck
impl Send for VerificationCheck
impl Sync for VerificationCheck
impl Unpin for VerificationCheck
impl UnsafeUnpin for VerificationCheck
impl UnwindSafe for VerificationCheck
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