pub struct ApplicationInfo {
pub application_id: Option<String>,
pub application_name: Option<String>,
pub compute_platform: Option<String>,
pub create_time: Option<f64>,
pub git_hub_account_name: Option<String>,
pub linked_to_git_hub: Option<bool>,
}
Expand description
Information about an application.
Fields§
§application_id: Option<String>
The application ID.
application_name: Option<String>
The application name.
compute_platform: Option<String>
The destination platform type for deployment of the application (Lambda
or Server
).
create_time: Option<f64>
The time at which the application was created.
git_hub_account_name: Option<String>
The name for a connection to a GitHub account.
linked_to_git_hub: Option<bool>
True if the user has authenticated with GitHub for the specified application. Otherwise, false.
Trait Implementations§
Source§impl Clone for ApplicationInfo
impl Clone for ApplicationInfo
Source§fn clone(&self) -> ApplicationInfo
fn clone(&self) -> ApplicationInfo
Returns a duplicate 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 ApplicationInfo
impl Debug for ApplicationInfo
Source§impl Default for ApplicationInfo
impl Default for ApplicationInfo
Source§fn default() -> ApplicationInfo
fn default() -> ApplicationInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationInfo
impl<'de> Deserialize<'de> for ApplicationInfo
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 ApplicationInfo
impl PartialEq for ApplicationInfo
impl StructuralPartialEq for ApplicationInfo
Auto Trait Implementations§
impl Freeze for ApplicationInfo
impl RefUnwindSafe for ApplicationInfo
impl Send for ApplicationInfo
impl Sync for ApplicationInfo
impl Unpin for ApplicationInfo
impl UnwindSafe for ApplicationInfo
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