pub struct ListRecoveryPointsByBackupVaultOutput {
pub next_token: Option<String>,
pub recovery_points: Option<Vec<RecoveryPointByBackupVault>>,
}Fields§
§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.
recovery_points: Option<Vec<RecoveryPointByBackupVault>>An array of objects that contain detailed information about recovery points saved in a backup vault.
Trait Implementations§
Source§impl Clone for ListRecoveryPointsByBackupVaultOutput
impl Clone for ListRecoveryPointsByBackupVaultOutput
Source§fn clone(&self) -> ListRecoveryPointsByBackupVaultOutput
fn clone(&self) -> ListRecoveryPointsByBackupVaultOutput
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 Default for ListRecoveryPointsByBackupVaultOutput
impl Default for ListRecoveryPointsByBackupVaultOutput
Source§fn default() -> ListRecoveryPointsByBackupVaultOutput
fn default() -> ListRecoveryPointsByBackupVaultOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListRecoveryPointsByBackupVaultOutput
impl<'de> Deserialize<'de> for ListRecoveryPointsByBackupVaultOutput
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 ListRecoveryPointsByBackupVaultOutput
impl PartialEq for ListRecoveryPointsByBackupVaultOutput
Source§fn eq(&self, other: &ListRecoveryPointsByBackupVaultOutput) -> bool
fn eq(&self, other: &ListRecoveryPointsByBackupVaultOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListRecoveryPointsByBackupVaultOutput
Auto Trait Implementations§
impl Freeze for ListRecoveryPointsByBackupVaultOutput
impl RefUnwindSafe for ListRecoveryPointsByBackupVaultOutput
impl Send for ListRecoveryPointsByBackupVaultOutput
impl Sync for ListRecoveryPointsByBackupVaultOutput
impl Unpin for ListRecoveryPointsByBackupVaultOutput
impl UnwindSafe for ListRecoveryPointsByBackupVaultOutput
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