pub struct App {Show 19 fields
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_task_id: Option<Uuid>,
pub domains_added: Option<Vec<String>>,
pub domains_removed: Option<Vec<String>>,
pub labels: Option<HashMap<String, String>>,
}Fields§
§created_at: Option<i64>Timestamp of image addition to the system.
updated_at: Option<i64>Timestamp of image updation to the system.
name: StringName of the app.
description: Option<String>Description of the app.
app_id: UuidUUID for the app
input_image_name: StringInput image name of images for apps.
output_image_name: StringOutput image name of images for apps.
isvprodid: i32IsvProdId
isvsvn: i32ISVSVN
mem_size: i64Mem size required for the image.
threads: i32Threads req for the image.
allowed_domains: Option<Vec<String>>§whitelisted_domains: Option<Vec<String>>§nodes: Option<Vec<AppNodeInfo>>§advanced_settings: Option<AdvancedSettings>§pending_task_id: Option<Uuid>UUID of pending domain whitelist task for the app.
domains_added: Option<Vec<String>>§domains_removed: Option<Vec<String>>§labels: Option<HashMap<String, String>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for App
impl<'de> Deserialize<'de> for App
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<App, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<App, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for App
impl Serialize for App
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for App
Auto Trait Implementations§
impl Freeze for App
impl RefUnwindSafe for App
impl Send for App
impl Sync for App
impl Unpin for App
impl UnwindSafe for App
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more