pub struct ListApplicationsResponse {
pub applications: Option<Vec<ApplicationSummary>>,
pub next_token: Option<String>,
}
Fields§
§applications: Option<Vec<ApplicationSummary>>
An array of application summaries.
next_token: Option<String>
The token to request the next page of results.
Trait Implementations§
Source§impl Clone for ListApplicationsResponse
impl Clone for ListApplicationsResponse
Source§fn clone(&self) -> ListApplicationsResponse
fn clone(&self) -> ListApplicationsResponse
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 Debug for ListApplicationsResponse
impl Debug for ListApplicationsResponse
Source§impl Default for ListApplicationsResponse
impl Default for ListApplicationsResponse
Source§fn default() -> ListApplicationsResponse
fn default() -> ListApplicationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListApplicationsResponse
impl<'de> Deserialize<'de> for ListApplicationsResponse
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 ListApplicationsResponse
impl PartialEq for ListApplicationsResponse
impl StructuralPartialEq for ListApplicationsResponse
Auto Trait Implementations§
impl Freeze for ListApplicationsResponse
impl RefUnwindSafe for ListApplicationsResponse
impl Send for ListApplicationsResponse
impl Sync for ListApplicationsResponse
impl Unpin for ListApplicationsResponse
impl UnwindSafe for ListApplicationsResponse
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