pub struct ListNetworksInput {
pub framework: Option<String>,
pub max_results: Option<i64>,
pub name: Option<String>,
pub next_token: Option<String>,
pub status: Option<String>,
}Fields§
§framework: Option<String>An optional framework specifier. If provided, only networks of this framework type are listed.
max_results: Option<i64>The maximum number of networks to list.
name: Option<String>The name of the network.
next_token: Option<String>The pagination token that indicates the next set of results to retrieve.
status: Option<String>An optional status specifier. If provided, only networks currently in this status are listed.
Trait Implementations§
Source§impl Clone for ListNetworksInput
impl Clone for ListNetworksInput
Source§fn clone(&self) -> ListNetworksInput
fn clone(&self) -> ListNetworksInput
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 ListNetworksInput
impl Debug for ListNetworksInput
Source§impl Default for ListNetworksInput
impl Default for ListNetworksInput
Source§fn default() -> ListNetworksInput
fn default() -> ListNetworksInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListNetworksInput
impl PartialEq for ListNetworksInput
Source§impl Serialize for ListNetworksInput
impl Serialize for ListNetworksInput
impl StructuralPartialEq for ListNetworksInput
Auto Trait Implementations§
impl Freeze for ListNetworksInput
impl RefUnwindSafe for ListNetworksInput
impl Send for ListNetworksInput
impl Sync for ListNetworksInput
impl Unpin for ListNetworksInput
impl UnwindSafe for ListNetworksInput
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