pub struct ListBackupPlanVersionsOutput {
pub backup_plan_versions_list: Option<Vec<BackupPlansListMember>>,
pub next_token: Option<String>,
}
Fields§
§backup_plan_versions_list: Option<Vec<BackupPlansListMember>>
An array of version list items containing metadata about your backup plans.
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 ListBackupPlanVersionsOutput
impl Clone for ListBackupPlanVersionsOutput
Source§fn clone(&self) -> ListBackupPlanVersionsOutput
fn clone(&self) -> ListBackupPlanVersionsOutput
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 ListBackupPlanVersionsOutput
impl Debug for ListBackupPlanVersionsOutput
Source§impl Default for ListBackupPlanVersionsOutput
impl Default for ListBackupPlanVersionsOutput
Source§fn default() -> ListBackupPlanVersionsOutput
fn default() -> ListBackupPlanVersionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBackupPlanVersionsOutput
impl<'de> Deserialize<'de> for ListBackupPlanVersionsOutput
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
Source§impl PartialEq for ListBackupPlanVersionsOutput
impl PartialEq for ListBackupPlanVersionsOutput
Source§fn eq(&self, other: &ListBackupPlanVersionsOutput) -> bool
fn eq(&self, other: &ListBackupPlanVersionsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListBackupPlanVersionsOutput
Auto Trait Implementations§
impl Freeze for ListBackupPlanVersionsOutput
impl RefUnwindSafe for ListBackupPlanVersionsOutput
impl Send for ListBackupPlanVersionsOutput
impl Sync for ListBackupPlanVersionsOutput
impl Unpin for ListBackupPlanVersionsOutput
impl UnwindSafe for ListBackupPlanVersionsOutput
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