[][src]Struct em_client::models::ConvertAppBuildRequest

pub struct ConvertAppBuildRequest {
    pub app_id: Uuid,
    pub docker_version: String,
    pub input_auth_config: Option<AuthConfig>,
    pub output_auth_config: Option<AuthConfig>,
    pub auth_config: Option<AuthConfig>,
    pub debug: Option<bool>,
    pub mem_size: Option<i64>,
    pub threads: Option<i32>,
}

Fields

app_id: Uuid

app id of the build

docker_version: String

Build docker version

input_auth_config: Option<AuthConfig>output_auth_config: Option<AuthConfig>auth_config: Option<AuthConfig>debug: Option<bool>

Enables debug logging from EnclaveOS

mem_size: Option<i64>

Mem size required for the build

threads: Option<i32>

Threads req for the build

Implementations

impl ConvertAppBuildRequest[src]

pub fn new(app_id: Uuid, docker_version: String) -> ConvertAppBuildRequest[src]

Trait Implementations

impl Clone for ConvertAppBuildRequest[src]

impl Debug for ConvertAppBuildRequest[src]

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

impl PartialEq<ConvertAppBuildRequest> for ConvertAppBuildRequest[src]

impl Serialize for ConvertAppBuildRequest[src]

impl StructuralPartialEq for ConvertAppBuildRequest[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