[][src]Struct em_client::models::App

pub struct App {
    pub created_at: Option<i64>,
    pub updated_at: Option<i64>,
    pub name: String,
    pub description: Option<String>,
    pub app_id: Uuid,
    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 whitelisted_domains: Option<Vec<String>>,
    pub nodes: Option<Vec<AppNodeInfo>>,
    pub advanced_settings: Option<AdvancedSettings>,
    pub pending_domain_whitelist_tasks: Option<i32>,
    pub domains_added: Option<Vec<String>>,
    pub domains_removed: Option<Vec<String>>,
}

Fields

created_at: Option<i64>

Timestamp of build addition to the system

updated_at: Option<i64>

Timestamp of build updation to the system

name: String

Name of the app

description: Option<String>

Description of the app

app_id: Uuid

UUID for 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>>whitelisted_domains: Option<Vec<String>>nodes: Option<Vec<AppNodeInfo>>advanced_settings: Option<AdvancedSettings>pending_domain_whitelist_tasks: Option<i32>

no of domain whitelist tasks pending for app

domains_added: Option<Vec<String>>domains_removed: Option<Vec<String>>

Implementations

impl App[src]

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

Trait Implementations

impl Clone for App[src]

impl Debug for App[src]

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

impl PartialEq<App> for App[src]

impl Serialize for App[src]

impl StructuralPartialEq for App[src]

Auto Trait Implementations

impl RefUnwindSafe for App

impl Send for App

impl Sync for App

impl Unpin for App

impl UnwindSafe for App

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