pub struct WindowsBuilder { /* private fields */ }
Expand description

Builder for Windows.

Implementations§

source§

impl WindowsBuilder

source

pub fn layer_folders<VALUE: Into<Vec<String>>>(self, value: VALUE) -> Self

LayerFolders contains a list of absolute paths to directories containing image layers.

source

pub fn devices<VALUE: Into<Vec<WindowsDevice>>>(self, value: VALUE) -> Self

Devices are the list of devices to be mapped into the container.

source

pub fn resources<VALUE: Into<WindowsResources>>(self, value: VALUE) -> Self

Resources contains information for handling resource constraints for the container.

source

pub fn credential_spec<VALUE: Into<HashMap<String, Option<Value>>>>( self, value: VALUE ) -> Self

CredentialSpec contains a JSON object describing a group Managed Service Account (gMSA) specification.

source

pub fn servicing<VALUE: Into<bool>>(self, value: VALUE) -> Self

Servicing indicates if the container is being started in a mode to apply a Windows Update servicing operation.

source

pub fn ignore_flushes_during_boot<VALUE: Into<bool>>(self, value: VALUE) -> Self

IgnoreFlushesDuringBoot indicates if the container is being started in a mode where disk writes are not flushed during its boot process.

source

pub fn hyperv<VALUE: Into<WindowsHyperV>>(self, value: VALUE) -> Self

HyperV contains information for running a container with Hyper-V isolation.

source

pub fn network<VALUE: Into<WindowsNetwork>>(self, value: VALUE) -> Self

Network restriction configuration.

source

pub fn build(self) -> Result<Windows, OciSpecError>

Builds a new Windows.

§Errors

If a required field has not been initialized.

Trait Implementations§

source§

impl Default for WindowsBuilder

source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.