pub struct StackConfigurationManager {
pub name: Option<String>,
pub version: Option<String>,
}Expand description
Describes the configuration manager.
Fields§
§name: Option<String>The name. This parameter must be set to "Chef".
version: Option<String>The Chef version. This parameter must be set to 12, 11.10, or 11.4 for Linux stacks, and to 12.2 for Windows stacks. The default value for Linux stacks is 11.4.
Trait Implementations§
Source§impl Clone for StackConfigurationManager
impl Clone for StackConfigurationManager
Source§fn clone(&self) -> StackConfigurationManager
fn clone(&self) -> StackConfigurationManager
Returns a duplicate of the value. Read more
1.0.0 · 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 StackConfigurationManager
impl Debug for StackConfigurationManager
Source§impl Default for StackConfigurationManager
impl Default for StackConfigurationManager
Source§fn default() -> StackConfigurationManager
fn default() -> StackConfigurationManager
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StackConfigurationManager
impl<'de> Deserialize<'de> for StackConfigurationManager
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
impl StructuralPartialEq for StackConfigurationManager
Auto Trait Implementations§
impl Freeze for StackConfigurationManager
impl RefUnwindSafe for StackConfigurationManager
impl Send for StackConfigurationManager
impl Sync for StackConfigurationManager
impl Unpin for StackConfigurationManager
impl UnwindSafe for StackConfigurationManager
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