pub enum FieldOutcome {
Planned,
Unchanged,
Applied,
Created,
}Expand description
What the guarded setup did to one field.
Variants§
Planned
A read-only plan.
Unchanged
Apply found the field there with every configured option.
Applied
Missing options were added to the field that was there, and verified.
Created
The field was not there; it was created holding the configured options, and verified.
Trait Implementations§
Source§impl Clone for FieldOutcome
impl Clone for FieldOutcome
impl Copy for FieldOutcome
Source§impl Debug for FieldOutcome
impl Debug for FieldOutcome
impl Eq for FieldOutcome
Source§impl JsonSchema for FieldOutcome
impl JsonSchema for FieldOutcome
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 FieldOutcome
impl PartialEq for FieldOutcome
Source§impl Serialize for FieldOutcome
impl Serialize for FieldOutcome
impl StructuralPartialEq for FieldOutcome
Auto Trait Implementations§
impl Freeze for FieldOutcome
impl RefUnwindSafe for FieldOutcome
impl Send for FieldOutcome
impl Sync for FieldOutcome
impl Unpin for FieldOutcome
impl UnsafeUnpin for FieldOutcome
impl UnwindSafe for FieldOutcome
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