pub struct ListVirtualGatewaysOutput {
pub next_token: Option<String>,
pub virtual_gateways: Vec<VirtualGatewayRef>,
}
Fields§
§next_token: Option<String>
The nextToken
value to include in a future ListVirtualGateways
request. When the results of a ListVirtualGateways
request exceed
limit
, you can use this value to retrieve the next page of results. This
value is null
when there are no more results to return.
virtual_gateways: Vec<VirtualGatewayRef>
The list of existing virtual gateways for the specified service mesh.
Trait Implementations§
Source§impl Clone for ListVirtualGatewaysOutput
impl Clone for ListVirtualGatewaysOutput
Source§fn clone(&self) -> ListVirtualGatewaysOutput
fn clone(&self) -> ListVirtualGatewaysOutput
Returns a copy 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 ListVirtualGatewaysOutput
impl Debug for ListVirtualGatewaysOutput
Source§impl Default for ListVirtualGatewaysOutput
impl Default for ListVirtualGatewaysOutput
Source§fn default() -> ListVirtualGatewaysOutput
fn default() -> ListVirtualGatewaysOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListVirtualGatewaysOutput
impl<'de> Deserialize<'de> for ListVirtualGatewaysOutput
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
impl StructuralPartialEq for ListVirtualGatewaysOutput
Auto Trait Implementations§
impl Freeze for ListVirtualGatewaysOutput
impl RefUnwindSafe for ListVirtualGatewaysOutput
impl Send for ListVirtualGatewaysOutput
impl Sync for ListVirtualGatewaysOutput
impl Unpin for ListVirtualGatewaysOutput
impl UnwindSafe for ListVirtualGatewaysOutput
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