pub struct GetApplicationRevisionOutput {
pub application_name: Option<String>,
pub revision: Option<RevisionLocation>,
pub revision_info: Option<GenericRevisionInfo>,
}
Expand description
Represents the output of a GetApplicationRevision
operation.
Fields§
§application_name: Option<String>
The name of the application that corresponds to the revision.
revision: Option<RevisionLocation>
Additional information about the revision, including type and location.
revision_info: Option<GenericRevisionInfo>
General information about the revision.
Trait Implementations§
Source§impl Clone for GetApplicationRevisionOutput
impl Clone for GetApplicationRevisionOutput
Source§fn clone(&self) -> GetApplicationRevisionOutput
fn clone(&self) -> GetApplicationRevisionOutput
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 GetApplicationRevisionOutput
impl Debug for GetApplicationRevisionOutput
Source§impl Default for GetApplicationRevisionOutput
impl Default for GetApplicationRevisionOutput
Source§fn default() -> GetApplicationRevisionOutput
fn default() -> GetApplicationRevisionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetApplicationRevisionOutput
impl<'de> Deserialize<'de> for GetApplicationRevisionOutput
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 GetApplicationRevisionOutput
impl PartialEq for GetApplicationRevisionOutput
Source§fn eq(&self, other: &GetApplicationRevisionOutput) -> bool
fn eq(&self, other: &GetApplicationRevisionOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetApplicationRevisionOutput
Auto Trait Implementations§
impl Freeze for GetApplicationRevisionOutput
impl RefUnwindSafe for GetApplicationRevisionOutput
impl Send for GetApplicationRevisionOutput
impl Sync for GetApplicationRevisionOutput
impl Unpin for GetApplicationRevisionOutput
impl UnwindSafe for GetApplicationRevisionOutput
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