pub struct ListProtectedResourcesInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of items to be returned.
next_token: Option<String>
The next item following a partial list of returned items. For example, if a request is made to return maxResults
number of items, NextToken
allows you to return more items in your list starting at the location pointed to by the next token.
Trait Implementations§
Source§impl Clone for ListProtectedResourcesInput
impl Clone for ListProtectedResourcesInput
Source§fn clone(&self) -> ListProtectedResourcesInput
fn clone(&self) -> ListProtectedResourcesInput
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 ListProtectedResourcesInput
impl Debug for ListProtectedResourcesInput
Source§impl Default for ListProtectedResourcesInput
impl Default for ListProtectedResourcesInput
Source§fn default() -> ListProtectedResourcesInput
fn default() -> ListProtectedResourcesInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListProtectedResourcesInput
Auto Trait Implementations§
impl Freeze for ListProtectedResourcesInput
impl RefUnwindSafe for ListProtectedResourcesInput
impl Send for ListProtectedResourcesInput
impl Sync for ListProtectedResourcesInput
impl Unpin for ListProtectedResourcesInput
impl UnwindSafe for ListProtectedResourcesInput
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