pub struct VersionSummary {
pub application_id: String,
pub creation_time: String,
pub semantic_version: String,
pub source_code_url: Option<String>,
}Expand description
An application version summary.
Fields§
§application_id: StringThe application Amazon Resource Name (ARN).
creation_time: StringThe date and time this resource was created.
semantic_version: StringThe semantic version of the application:
source_code_url: Option<String>A link to a public repository for the source code of your application, for example the URL of a specific GitHub commit.
Trait Implementations§
Source§impl Clone for VersionSummary
impl Clone for VersionSummary
Source§fn clone(&self) -> VersionSummary
fn clone(&self) -> VersionSummary
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 VersionSummary
impl Debug for VersionSummary
Source§impl Default for VersionSummary
impl Default for VersionSummary
Source§fn default() -> VersionSummary
fn default() -> VersionSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VersionSummary
impl<'de> Deserialize<'de> for VersionSummary
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 VersionSummary
impl PartialEq for VersionSummary
impl StructuralPartialEq for VersionSummary
Auto Trait Implementations§
impl Freeze for VersionSummary
impl RefUnwindSafe for VersionSummary
impl Send for VersionSummary
impl Sync for VersionSummary
impl Unpin for VersionSummary
impl UnwindSafe for VersionSummary
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