pub struct Application {
pub display_name: Option<String>,
pub enabled: Option<bool>,
pub icon_url: Option<String>,
pub launch_parameters: Option<String>,
pub launch_path: Option<String>,
pub metadata: Option<HashMap<String, String>>,
pub name: Option<String>,
}
Expand description
Describes an application in the application catalog.
Fields§
§display_name: Option<String>
The application name to display.
enabled: Option<bool>
If there is a problem, the application can be disabled after image creation.
icon_url: Option<String>
The URL for the application icon. This URL might be time-limited.
launch_parameters: Option<String>
The arguments that are passed to the application at launch.
launch_path: Option<String>
The path to the application executable in the instance.
metadata: Option<HashMap<String, String>>
Additional attributes that describe the application.
name: Option<String>
The name of the application.
Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Application
impl Debug for Application
Source§impl Default for Application
impl Default for Application
Source§fn default() -> Application
fn default() -> Application
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Application
impl<'de> Deserialize<'de> for Application
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Application
impl PartialEq for Application
impl StructuralPartialEq for Application
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnwindSafe for Application
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