pub struct ApplicationVersionDescriptionsMessage {
pub application_versions: Option<Vec<ApplicationVersionDescription>>,
pub next_token: Option<String>,
}
Expand description
Result message wrapping a list of application version descriptions.
Fields§
§application_versions: Option<Vec<ApplicationVersionDescription>>
List of ApplicationVersionDescription
objects sorted in order of creation.
next_token: Option<String>
In a paginated request, the token that you can pass in a subsequent request to get the next response page.
Trait Implementations§
Source§impl Clone for ApplicationVersionDescriptionsMessage
impl Clone for ApplicationVersionDescriptionsMessage
Source§fn clone(&self) -> ApplicationVersionDescriptionsMessage
fn clone(&self) -> ApplicationVersionDescriptionsMessage
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 ApplicationVersionDescriptionsMessage
impl Default for ApplicationVersionDescriptionsMessage
Source§fn default() -> ApplicationVersionDescriptionsMessage
fn default() -> ApplicationVersionDescriptionsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplicationVersionDescriptionsMessage
impl PartialEq for ApplicationVersionDescriptionsMessage
Source§fn eq(&self, other: &ApplicationVersionDescriptionsMessage) -> bool
fn eq(&self, other: &ApplicationVersionDescriptionsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApplicationVersionDescriptionsMessage
Auto Trait Implementations§
impl Freeze for ApplicationVersionDescriptionsMessage
impl RefUnwindSafe for ApplicationVersionDescriptionsMessage
impl Send for ApplicationVersionDescriptionsMessage
impl Sync for ApplicationVersionDescriptionsMessage
impl Unpin for ApplicationVersionDescriptionsMessage
impl UnwindSafe for ApplicationVersionDescriptionsMessage
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