pub struct ListEnvironmentsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of environments to get identifiers for.
next_token: Option<String>During a previous call, 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. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
Trait Implementations§
Source§impl Clone for ListEnvironmentsRequest
impl Clone for ListEnvironmentsRequest
Source§fn clone(&self) -> ListEnvironmentsRequest
fn clone(&self) -> ListEnvironmentsRequest
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 ListEnvironmentsRequest
impl Debug for ListEnvironmentsRequest
Source§impl Default for ListEnvironmentsRequest
impl Default for ListEnvironmentsRequest
Source§fn default() -> ListEnvironmentsRequest
fn default() -> ListEnvironmentsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListEnvironmentsRequest
impl PartialEq for ListEnvironmentsRequest
Source§impl Serialize for ListEnvironmentsRequest
impl Serialize for ListEnvironmentsRequest
impl StructuralPartialEq for ListEnvironmentsRequest
Auto Trait Implementations§
impl Freeze for ListEnvironmentsRequest
impl RefUnwindSafe for ListEnvironmentsRequest
impl Send for ListEnvironmentsRequest
impl Sync for ListEnvironmentsRequest
impl Unpin for ListEnvironmentsRequest
impl UnwindSafe for ListEnvironmentsRequest
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