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