pub struct Windows {
pub credential_spec: Option<HashMap<String, Option<Value>>>,
pub devices: Option<Vec<WindowsDevice>>,
pub hyperv: Option<Hyperv>,
pub ignore_flushes_during_boot: Option<bool>,
pub layer_folders: Vec<String>,
pub network: Option<WindowsNetwork>,
pub resources: Option<WindowsResources>,
pub servicing: Option<bool>,
}
Expand description
Windows platform-specific configurations
Fields§
§credential_spec: Option<HashMap<String, Option<Value>>>
§devices: Option<Vec<WindowsDevice>>
§hyperv: Option<Hyperv>
§ignore_flushes_during_boot: Option<bool>
§layer_folders: Vec<String>
§network: Option<WindowsNetwork>
§resources: Option<WindowsResources>
§servicing: Option<bool>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Windows
impl<'de> Deserialize<'de> for Windows
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 Windows
Auto Trait Implementations§
impl Freeze for Windows
impl RefUnwindSafe for Windows
impl Send for Windows
impl Sync for Windows
impl Unpin for Windows
impl UnwindSafe for Windows
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