pub struct BackupResponse {
pub action_uid: Option<String>,
pub backup_uid: Option<String>,
pub extra: Value,
}
Expand description
Response from backup operation
Fields§
§action_uid: Option<String>
The action UID for tracking the backup operation
backup_uid: Option<String>
Backup UID if available
extra: Value
Additional fields from the response
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 · 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 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