pub struct ListBackupSelectionsOutput {
pub backup_selections_list: Option<Vec<BackupSelectionsListMember>>,
pub next_token: Option<String>,
}
Fields§
§backup_selections_list: Option<Vec<BackupSelectionsListMember>>
An array of backup selection list items containing metadata about each resource in the list.
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 ListBackupSelectionsOutput
impl Clone for ListBackupSelectionsOutput
Source§fn clone(&self) -> ListBackupSelectionsOutput
fn clone(&self) -> ListBackupSelectionsOutput
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 ListBackupSelectionsOutput
impl Debug for ListBackupSelectionsOutput
Source§impl Default for ListBackupSelectionsOutput
impl Default for ListBackupSelectionsOutput
Source§fn default() -> ListBackupSelectionsOutput
fn default() -> ListBackupSelectionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBackupSelectionsOutput
impl<'de> Deserialize<'de> for ListBackupSelectionsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ListBackupSelectionsOutput
Auto Trait Implementations§
impl Freeze for ListBackupSelectionsOutput
impl RefUnwindSafe for ListBackupSelectionsOutput
impl Send for ListBackupSelectionsOutput
impl Sync for ListBackupSelectionsOutput
impl Unpin for ListBackupSelectionsOutput
impl UnwindSafe for ListBackupSelectionsOutput
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