pub struct BackupResponse {
pub backup_id: String,
pub name: Option<String>,
pub created_at: DateTime<Utc>,
}Expand description
Backup response containing the backup information
Fields§
§backup_id: String§name: Option<String>§created_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for BackupResponse
impl Clone for BackupResponse
Source§fn clone(&self) -> BackupResponse
fn clone(&self) -> BackupResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BackupResponse
impl Debug for BackupResponse
Source§impl<'de> Deserialize<'de> for BackupResponse
impl<'de> Deserialize<'de> for BackupResponse
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
Auto Trait Implementations§
impl Freeze for BackupResponse
impl RefUnwindSafe for BackupResponse
impl Send for BackupResponse
impl Sync for BackupResponse
impl Unpin for BackupResponse
impl UnsafeUnpin for BackupResponse
impl UnwindSafe for BackupResponse
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