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