pub struct ConversionRequest {
Show 23 fields pub input_image_name: String, pub output_image_name: String, pub input_auth_config: Option<AuthConfig>, pub output_auth_config: Option<AuthConfig>, pub auth_config: Option<AuthConfig>, pub mem_size: Option<String>, pub threads: Option<i32>, pub debug: Option<bool>, pub entrypoint: Option<Vec<String>>, pub entrypoint_args: Option<Vec<String>>, pub encrypted_dirs: Option<Vec<String>>, pub manifest_options: Option<Value>, pub certificates: Option<Vec<CertificateConfig>>, pub ca_certificates: Option<Vec<CaCertificateConfig>>, pub signing_key: Option<SigningKeyConfig>, pub external_packages: Option<String>, pub app: Option<Value>, pub core_dump_pattern: Option<String>, pub log_file_path: Option<String>, pub java_mode: Option<String>, pub rw_dirs: Option<Vec<String>>, pub allow_cmdline_args: Option<bool>, pub manifest_env: Option<Vec<String>>,
}

Fields

input_image_name: String

Registry and image name for the input container, e.g. my-registry/sample-app:latest

output_image_name: String

Registry and image name for the output container, e.g. my-registry/sample-app-enclaveos:latest

input_auth_config: Option<AuthConfig>output_auth_config: Option<AuthConfig>auth_config: Option<AuthConfig>mem_size: Option<String>

Override the enclave size, e.g. 2048M. Suffixes K, M, and G are supported.

threads: Option<i32>

Number of enclave threads

debug: Option<bool>

Enables debug logging from EnclaveOS

entrypoint: Option<Vec<String>>

Override the entrypoint of the original container

entrypoint_args: Option<Vec<String>>

Override additional arguments to the container entrypoint

encrypted_dirs: Option<Vec<String>>

Filesystem directories to encrypt using enclave sealing key

manifest_options: Option<Value>

Add additional options to EnclaveOS manifest file

certificates: Option<Vec<CertificateConfig>>ca_certificates: Option<Vec<CaCertificateConfig>>signing_key: Option<SigningKeyConfig>external_packages: Option<String>

Fortanix external packages mount point in the toolserver container

app: Option<Value>core_dump_pattern: Option<String>

Template for generating debug core dump file paths

log_file_path: Option<String>

Path for EnclaveOS log file

java_mode: Option<String>

Type of the Java JVM used

rw_dirs: Option<Vec<String>>

List of read write directories

allow_cmdline_args: Option<bool>

Allow command line arguments to EnclaveOS application

manifest_env: Option<Vec<String>>

List of manifest environment variables

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Get the TypeId of this object.