pub enum StatusOptionsOutcome {
Planned,
Unchanged,
Applied,
}Expand description
The explicit result of the requested operation.
Variants§
Planned
A read-only plan.
Unchanged
Apply found nothing missing.
Applied
Additions were applied and verified.
Trait Implementations§
Source§impl Clone for StatusOptionsOutcome
impl Clone for StatusOptionsOutcome
Source§fn clone(&self) -> StatusOptionsOutcome
fn clone(&self) -> StatusOptionsOutcome
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 moreimpl Copy for StatusOptionsOutcome
Source§impl Debug for StatusOptionsOutcome
impl Debug for StatusOptionsOutcome
impl Eq for StatusOptionsOutcome
Source§impl JsonSchema for StatusOptionsOutcome
impl JsonSchema for StatusOptionsOutcome
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 StatusOptionsOutcome
impl PartialEq for StatusOptionsOutcome
Source§impl Serialize for StatusOptionsOutcome
impl Serialize for StatusOptionsOutcome
impl StructuralPartialEq for StatusOptionsOutcome
Auto Trait Implementations§
impl Freeze for StatusOptionsOutcome
impl RefUnwindSafe for StatusOptionsOutcome
impl Send for StatusOptionsOutcome
impl Sync for StatusOptionsOutcome
impl Unpin for StatusOptionsOutcome
impl UnsafeUnpin for StatusOptionsOutcome
impl UnwindSafe for StatusOptionsOutcome
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