[][src]Struct em_client::models::AppRequest

pub struct AppRequest {
    pub name: String,
    pub description: Option<String>,
    pub input_image_name: String,
    pub output_image_name: String,
    pub isvprodid: i32,
    pub isvsvn: i32,
    pub mem_size: i64,
    pub threads: i32,
    pub allowed_domains: Option<Vec<String>>,
    pub advanced_settings: Option<AdvancedSettings>,
}

Fields

name: String

Name of the app

description: Option<String>

Description of the app

input_image_name: String

Input image name of builds for apps

output_image_name: String

Output image name of builds for apps

isvprodid: i32

IsvProdId

isvsvn: i32

ISVSVN

mem_size: i64

Mem size required for the build

threads: i32

Threads req for the build

allowed_domains: Option<Vec<String>>advanced_settings: Option<AdvancedSettings>

Implementations

impl AppRequest[src]

pub fn new(
    name: String,
    input_image_name: String,
    output_image_name: String,
    isvprodid: i32,
    isvsvn: i32,
    mem_size: i64,
    threads: i32
) -> AppRequest
[src]

Trait Implementations

impl Clone for AppRequest[src]

impl Debug for AppRequest[src]

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

impl PartialEq<AppRequest> for AppRequest[src]

impl Serialize for AppRequest[src]

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