pub struct ListBackupPlanTemplatesInput {
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 ListBackupPlanTemplatesInput
impl Clone for ListBackupPlanTemplatesInput
Source§fn clone(&self) -> ListBackupPlanTemplatesInput
fn clone(&self) -> ListBackupPlanTemplatesInput
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 ListBackupPlanTemplatesInput
impl Debug for ListBackupPlanTemplatesInput
Source§impl Default for ListBackupPlanTemplatesInput
impl Default for ListBackupPlanTemplatesInput
Source§fn default() -> ListBackupPlanTemplatesInput
fn default() -> ListBackupPlanTemplatesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListBackupPlanTemplatesInput
impl PartialEq for ListBackupPlanTemplatesInput
Source§fn eq(&self, other: &ListBackupPlanTemplatesInput) -> bool
fn eq(&self, other: &ListBackupPlanTemplatesInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListBackupPlanTemplatesInput
Auto Trait Implementations§
impl Freeze for ListBackupPlanTemplatesInput
impl RefUnwindSafe for ListBackupPlanTemplatesInput
impl Send for ListBackupPlanTemplatesInput
impl Sync for ListBackupPlanTemplatesInput
impl Unpin for ListBackupPlanTemplatesInput
impl UnwindSafe for ListBackupPlanTemplatesInput
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