pub struct ListApplicationVersionsRequest {
pub application_id: String,
pub max_items: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§application_id: String
The Amazon Resource Name (ARN) of the application.
max_items: Option<i64>
The total number of items to return.
next_token: Option<String>
A token to specify where to start paginating.
Trait Implementations§
Source§impl Clone for ListApplicationVersionsRequest
impl Clone for ListApplicationVersionsRequest
Source§fn clone(&self) -> ListApplicationVersionsRequest
fn clone(&self) -> ListApplicationVersionsRequest
Returns a copy 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 ListApplicationVersionsRequest
impl Default for ListApplicationVersionsRequest
Source§fn default() -> ListApplicationVersionsRequest
fn default() -> ListApplicationVersionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListApplicationVersionsRequest
impl PartialEq for ListApplicationVersionsRequest
Source§fn eq(&self, other: &ListApplicationVersionsRequest) -> bool
fn eq(&self, other: &ListApplicationVersionsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListApplicationVersionsRequest
Auto Trait Implementations§
impl Freeze for ListApplicationVersionsRequest
impl RefUnwindSafe for ListApplicationVersionsRequest
impl Send for ListApplicationVersionsRequest
impl Sync for ListApplicationVersionsRequest
impl Unpin for ListApplicationVersionsRequest
impl UnwindSafe for ListApplicationVersionsRequest
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