pub struct ListMeshesInput {
pub limit: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§limit: Option<i64>
The maximum number of results returned by ListMeshes
in paginated output.
When you use this parameter, ListMeshes
returns only limit
results in a single page along with a nextToken
response element. You can see
the remaining results of the initial request by sending another ListMeshes
request with the returned nextToken
value. This value can be between
1 and 100. If you don't use this parameter,
ListMeshes
returns up to 100 results and a
nextToken
value if applicable.
next_token: Option<String>
The nextToken
value returned from a previous paginated
ListMeshes
request where limit
was used and the results
exceeded the value of that parameter. Pagination continues from the end of the previous
results that returned the nextToken
value.
<note>
<p>This token should be treated as an opaque identifier that is used only to
retrieve the next items in a list and not for other programmatic purposes.</p>
</note>
Trait Implementations§
Source§impl Clone for ListMeshesInput
impl Clone for ListMeshesInput
Source§fn clone(&self) -> ListMeshesInput
fn clone(&self) -> ListMeshesInput
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 ListMeshesInput
impl Debug for ListMeshesInput
Source§impl Default for ListMeshesInput
impl Default for ListMeshesInput
Source§fn default() -> ListMeshesInput
fn default() -> ListMeshesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListMeshesInput
impl PartialEq for ListMeshesInput
Source§impl Serialize for ListMeshesInput
impl Serialize for ListMeshesInput
impl StructuralPartialEq for ListMeshesInput
Auto Trait Implementations§
impl Freeze for ListMeshesInput
impl RefUnwindSafe for ListMeshesInput
impl Send for ListMeshesInput
impl Sync for ListMeshesInput
impl Unpin for ListMeshesInput
impl UnwindSafe for ListMeshesInput
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