pub struct ListGatewayRoutesOutput {
pub gateway_routes: Vec<GatewayRouteRef>,
pub next_token: Option<String>,
}
Fields§
§gateway_routes: Vec<GatewayRouteRef>
The list of existing gateway routes for the specified service mesh and virtual gateway.
next_token: Option<String>
The nextToken
value to include in a future ListGatewayRoutes
request. When the results of a ListGatewayRoutes
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.
Trait Implementations§
Source§impl Clone for ListGatewayRoutesOutput
impl Clone for ListGatewayRoutesOutput
Source§fn clone(&self) -> ListGatewayRoutesOutput
fn clone(&self) -> ListGatewayRoutesOutput
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 ListGatewayRoutesOutput
impl Debug for ListGatewayRoutesOutput
Source§impl Default for ListGatewayRoutesOutput
impl Default for ListGatewayRoutesOutput
Source§fn default() -> ListGatewayRoutesOutput
fn default() -> ListGatewayRoutesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListGatewayRoutesOutput
impl<'de> Deserialize<'de> for ListGatewayRoutesOutput
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 ListGatewayRoutesOutput
impl PartialEq for ListGatewayRoutesOutput
impl StructuralPartialEq for ListGatewayRoutesOutput
Auto Trait Implementations§
impl Freeze for ListGatewayRoutesOutput
impl RefUnwindSafe for ListGatewayRoutesOutput
impl Send for ListGatewayRoutesOutput
impl Sync for ListGatewayRoutesOutput
impl Unpin for ListGatewayRoutesOutput
impl UnwindSafe for ListGatewayRoutesOutput
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