pub struct StatusOptionsReport {
pub source: SourceName,
pub missing: Vec<String>,
pub outcome: StatusOptionsOutcome,
pub existing: Vec<StatusOption>,
}Expand description
The plan and verified outcome of reconciling configured Status options.
Fields§
§source: SourceNameThe configured source name.
missing: Vec<String>Configured option names absent before the operation.
outcome: StatusOptionsOutcomeWhat the requested operation did.
existing: Vec<StatusOption>The complete option list observed before any mutation.
Trait Implementations§
Source§impl Clone for StatusOptionsReport
impl Clone for StatusOptionsReport
Source§fn clone(&self) -> StatusOptionsReport
fn clone(&self) -> StatusOptionsReport
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 StatusOptionsReport
impl Debug for StatusOptionsReport
impl Eq for StatusOptionsReport
Source§impl JsonSchema for StatusOptionsReport
impl JsonSchema for StatusOptionsReport
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 StatusOptionsReport
impl PartialEq for StatusOptionsReport
Source§impl Serialize for StatusOptionsReport
impl Serialize for StatusOptionsReport
impl StructuralPartialEq for StatusOptionsReport
Auto Trait Implementations§
impl Freeze for StatusOptionsReport
impl RefUnwindSafe for StatusOptionsReport
impl Send for StatusOptionsReport
impl Sync for StatusOptionsReport
impl Unpin for StatusOptionsReport
impl UnsafeUnpin for StatusOptionsReport
impl UnwindSafe for StatusOptionsReport
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