pub struct ListInfrastructureConfigurationsRequest {
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§filters: Option<Vec<Filter>>
The filters.
max_results: Option<i64>
The maximum items to return in a request.
next_token: Option<String>
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
Trait Implementations§
Source§impl Clone for ListInfrastructureConfigurationsRequest
impl Clone for ListInfrastructureConfigurationsRequest
Source§fn clone(&self) -> ListInfrastructureConfigurationsRequest
fn clone(&self) -> ListInfrastructureConfigurationsRequest
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 Default for ListInfrastructureConfigurationsRequest
impl Default for ListInfrastructureConfigurationsRequest
Source§fn default() -> ListInfrastructureConfigurationsRequest
fn default() -> ListInfrastructureConfigurationsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListInfrastructureConfigurationsRequest
impl PartialEq for ListInfrastructureConfigurationsRequest
Source§fn eq(&self, other: &ListInfrastructureConfigurationsRequest) -> bool
fn eq(&self, other: &ListInfrastructureConfigurationsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListInfrastructureConfigurationsRequest
Auto Trait Implementations§
impl Freeze for ListInfrastructureConfigurationsRequest
impl RefUnwindSafe for ListInfrastructureConfigurationsRequest
impl Send for ListInfrastructureConfigurationsRequest
impl Sync for ListInfrastructureConfigurationsRequest
impl Unpin for ListInfrastructureConfigurationsRequest
impl UnwindSafe for ListInfrastructureConfigurationsRequest
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