[][src]Struct em_client::models::AdvancedSettings

pub struct AdvancedSettings {
    pub entrypoint: Option<Vec<String>>,
    pub encrypted_dirs: Option<Vec<String>>,
    pub certificate: Option<CertificateConfig>,
    pub ca_certificate: Option<CaCertificateConfig>,
    pub java_runtime: Option<JavaRuntime>,
    pub rw_dirs: Option<Vec<String>>,
    pub allow_cmdline_args: Option<bool>,
    pub manifest_env: Option<Vec<String>>,
}

Fields

entrypoint: Option<Vec<String>>

Entrypoint for the container

encrypted_dirs: Option<Vec<String>>

Filesystem directories to encrypt using enclave sealing key

certificate: Option<CertificateConfig>ca_certificate: Option<CaCertificateConfig>java_runtime: Option<JavaRuntime>rw_dirs: Option<Vec<String>>

Filesystem directories to enable read write

allow_cmdline_args: Option<bool>

allow command line arguments converter flag for an image

manifest_env: Option<Vec<String>>

Environment variables that will be passed to the manifest file when the container is converted

Implementations

impl AdvancedSettings[src]

Trait Implementations

impl Clone for AdvancedSettings[src]

impl Debug for AdvancedSettings[src]

impl<'de> Deserialize<'de> for AdvancedSettings[src]

impl PartialEq<AdvancedSettings> for AdvancedSettings[src]

impl Serialize for AdvancedSettings[src]

impl StructuralPartialEq for AdvancedSettings[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any