pub struct BatchGetApplicationRevisionsOutput {
pub application_name: Option<String>,
pub error_message: Option<String>,
pub revisions: Option<Vec<RevisionInfo>>,
}
Expand description
Represents the output of a BatchGetApplicationRevisions
operation.
Fields§
§application_name: Option<String>
The name of the application that corresponds to the revisions.
error_message: Option<String>
Information about errors that might have occurred during the API call.
revisions: Option<Vec<RevisionInfo>>
Additional information about the revisions, including the type and location.
Trait Implementations§
Source§impl Clone for BatchGetApplicationRevisionsOutput
impl Clone for BatchGetApplicationRevisionsOutput
Source§fn clone(&self) -> BatchGetApplicationRevisionsOutput
fn clone(&self) -> BatchGetApplicationRevisionsOutput
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 Default for BatchGetApplicationRevisionsOutput
impl Default for BatchGetApplicationRevisionsOutput
Source§fn default() -> BatchGetApplicationRevisionsOutput
fn default() -> BatchGetApplicationRevisionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetApplicationRevisionsOutput
impl<'de> Deserialize<'de> for BatchGetApplicationRevisionsOutput
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 BatchGetApplicationRevisionsOutput
impl PartialEq for BatchGetApplicationRevisionsOutput
Source§fn eq(&self, other: &BatchGetApplicationRevisionsOutput) -> bool
fn eq(&self, other: &BatchGetApplicationRevisionsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetApplicationRevisionsOutput
Auto Trait Implementations§
impl Freeze for BatchGetApplicationRevisionsOutput
impl RefUnwindSafe for BatchGetApplicationRevisionsOutput
impl Send for BatchGetApplicationRevisionsOutput
impl Sync for BatchGetApplicationRevisionsOutput
impl Unpin for BatchGetApplicationRevisionsOutput
impl UnwindSafe for BatchGetApplicationRevisionsOutput
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