pub struct ListEnvironmentsResult {
pub environment_ids: Option<Vec<String>>,
pub next_token: Option<String>,
}Fields§
§environment_ids: Option<Vec<String>>The list of environment identifiers.
next_token: Option<String>If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call.
Trait Implementations§
Source§impl Clone for ListEnvironmentsResult
impl Clone for ListEnvironmentsResult
Source§fn clone(&self) -> ListEnvironmentsResult
fn clone(&self) -> ListEnvironmentsResult
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 ListEnvironmentsResult
impl Debug for ListEnvironmentsResult
Source§impl Default for ListEnvironmentsResult
impl Default for ListEnvironmentsResult
Source§fn default() -> ListEnvironmentsResult
fn default() -> ListEnvironmentsResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListEnvironmentsResult
impl<'de> Deserialize<'de> for ListEnvironmentsResult
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 ListEnvironmentsResult
impl PartialEq for ListEnvironmentsResult
impl StructuralPartialEq for ListEnvironmentsResult
Auto Trait Implementations§
impl Freeze for ListEnvironmentsResult
impl RefUnwindSafe for ListEnvironmentsResult
impl Send for ListEnvironmentsResult
impl Sync for ListEnvironmentsResult
impl Unpin for ListEnvironmentsResult
impl UnwindSafe for ListEnvironmentsResult
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