pub struct RestoreTableFromBackupOutput {
pub table_description: Option<TableDescription>,
}
Fields§
§table_description: Option<TableDescription>
The description of the table created from an existing backup.
Trait Implementations§
Source§impl Clone for RestoreTableFromBackupOutput
impl Clone for RestoreTableFromBackupOutput
Source§fn clone(&self) -> RestoreTableFromBackupOutput
fn clone(&self) -> RestoreTableFromBackupOutput
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 RestoreTableFromBackupOutput
impl Debug for RestoreTableFromBackupOutput
Source§impl Default for RestoreTableFromBackupOutput
impl Default for RestoreTableFromBackupOutput
Source§fn default() -> RestoreTableFromBackupOutput
fn default() -> RestoreTableFromBackupOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RestoreTableFromBackupOutput
impl<'de> Deserialize<'de> for RestoreTableFromBackupOutput
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 RestoreTableFromBackupOutput
impl PartialEq for RestoreTableFromBackupOutput
Source§fn eq(&self, other: &RestoreTableFromBackupOutput) -> bool
fn eq(&self, other: &RestoreTableFromBackupOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RestoreTableFromBackupOutput
Auto Trait Implementations§
impl Freeze for RestoreTableFromBackupOutput
impl RefUnwindSafe for RestoreTableFromBackupOutput
impl Send for RestoreTableFromBackupOutput
impl Sync for RestoreTableFromBackupOutput
impl Unpin for RestoreTableFromBackupOutput
impl UnwindSafe for RestoreTableFromBackupOutput
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