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