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