pub struct ListIndicesRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of results to return at one time.
next_token: Option<String>The token used to get the next set of results, or null if there are no additional results.
Trait Implementations§
Source§impl Clone for ListIndicesRequest
impl Clone for ListIndicesRequest
Source§fn clone(&self) -> ListIndicesRequest
fn clone(&self) -> ListIndicesRequest
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 ListIndicesRequest
impl Debug for ListIndicesRequest
Source§impl Default for ListIndicesRequest
impl Default for ListIndicesRequest
Source§fn default() -> ListIndicesRequest
fn default() -> ListIndicesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListIndicesRequest
impl PartialEq for ListIndicesRequest
Source§impl Serialize for ListIndicesRequest
impl Serialize for ListIndicesRequest
impl StructuralPartialEq for ListIndicesRequest
Auto Trait Implementations§
impl Freeze for ListIndicesRequest
impl RefUnwindSafe for ListIndicesRequest
impl Send for ListIndicesRequest
impl Sync for ListIndicesRequest
impl Unpin for ListIndicesRequest
impl UnwindSafe for ListIndicesRequest
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