pub struct ConfigStep {
pub state: Option<String>,
pub option: Option<Value>,
pub error: Option<String>,
pub result: Option<String>,
pub extra: Map<String, Value>,
}Expand description
Interactive step from config/create / config/update (with opt.nonInteractive).
Fields§
§state: Option<String>§option: Option<Value>§error: Option<String>§result: Option<String>§extra: Map<String, Value>Trait Implementations§
Source§impl Clone for ConfigStep
impl Clone for ConfigStep
Source§fn clone(&self) -> ConfigStep
fn clone(&self) -> ConfigStep
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 ConfigStep
impl Debug for ConfigStep
Source§impl Default for ConfigStep
impl Default for ConfigStep
Source§fn default() -> ConfigStep
fn default() -> ConfigStep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigStep
impl<'de> Deserialize<'de> for ConfigStep
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
Auto Trait Implementations§
impl Freeze for ConfigStep
impl RefUnwindSafe for ConfigStep
impl Send for ConfigStep
impl Sync for ConfigStep
impl Unpin for ConfigStep
impl UnsafeUnpin for ConfigStep
impl UnwindSafe for ConfigStep
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