pub struct ListApplicationsOutput {
pub applications: Option<Vec<String>>,
pub next_token: Option<String>,
}
Expand description
Represents the output of a ListApplications operation.
Fields§
§applications: Option<Vec<String>>
A list of application names.
next_token: Option<String>
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list applications call to return the next set of applications in the list.
Trait Implementations§
Source§impl Clone for ListApplicationsOutput
impl Clone for ListApplicationsOutput
Source§fn clone(&self) -> ListApplicationsOutput
fn clone(&self) -> ListApplicationsOutput
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 ListApplicationsOutput
impl Debug for ListApplicationsOutput
Source§impl Default for ListApplicationsOutput
impl Default for ListApplicationsOutput
Source§fn default() -> ListApplicationsOutput
fn default() -> ListApplicationsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListApplicationsOutput
impl<'de> Deserialize<'de> for ListApplicationsOutput
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 ListApplicationsOutput
impl PartialEq for ListApplicationsOutput
impl StructuralPartialEq for ListApplicationsOutput
Auto Trait Implementations§
impl Freeze for ListApplicationsOutput
impl RefUnwindSafe for ListApplicationsOutput
impl Send for ListApplicationsOutput
impl Sync for ListApplicationsOutput
impl Unpin for ListApplicationsOutput
impl UnwindSafe for ListApplicationsOutput
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