pub struct ListBackupVaultsInput {
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 ListBackupVaultsInput
impl Clone for ListBackupVaultsInput
Source§fn clone(&self) -> ListBackupVaultsInput
fn clone(&self) -> ListBackupVaultsInput
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 ListBackupVaultsInput
impl Debug for ListBackupVaultsInput
Source§impl Default for ListBackupVaultsInput
impl Default for ListBackupVaultsInput
Source§fn default() -> ListBackupVaultsInput
fn default() -> ListBackupVaultsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBackupVaultsInput
impl PartialEq for ListBackupVaultsInput
Source§impl Serialize for ListBackupVaultsInput
impl Serialize for ListBackupVaultsInput
impl StructuralPartialEq for ListBackupVaultsInput
Auto Trait Implementations§
impl Freeze for ListBackupVaultsInput
impl RefUnwindSafe for ListBackupVaultsInput
impl Send for ListBackupVaultsInput
impl Sync for ListBackupVaultsInput
impl Unpin for ListBackupVaultsInput
impl UnwindSafe for ListBackupVaultsInput
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