pub struct ListDeploymentsOutput {
pub deployments: Option<Vec<String>>,
pub next_token: Option<String>,
}Expand description
Represents the output of a ListDeployments operation.
Fields§
§deployments: Option<Vec<String>>A list of deployment IDs.
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 deployments call to return the next set of deployments in the list.
Trait Implementations§
Source§impl Clone for ListDeploymentsOutput
impl Clone for ListDeploymentsOutput
Source§fn clone(&self) -> ListDeploymentsOutput
fn clone(&self) -> ListDeploymentsOutput
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 ListDeploymentsOutput
impl Debug for ListDeploymentsOutput
Source§impl Default for ListDeploymentsOutput
impl Default for ListDeploymentsOutput
Source§fn default() -> ListDeploymentsOutput
fn default() -> ListDeploymentsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDeploymentsOutput
impl<'de> Deserialize<'de> for ListDeploymentsOutput
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 ListDeploymentsOutput
impl PartialEq for ListDeploymentsOutput
impl StructuralPartialEq for ListDeploymentsOutput
Auto Trait Implementations§
impl Freeze for ListDeploymentsOutput
impl RefUnwindSafe for ListDeploymentsOutput
impl Send for ListDeploymentsOutput
impl Sync for ListDeploymentsOutput
impl Unpin for ListDeploymentsOutput
impl UnwindSafe for ListDeploymentsOutput
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