pub struct BackupInfo {Show 14 fields
pub backup_id: String,
pub name: String,
pub backup_type: String,
pub status: String,
pub namespaces: Vec<String>,
pub vector_count: u64,
pub size_bytes: u64,
pub created_at: u64,
pub completed_at: Option<u64>,
pub duration_seconds: Option<u64>,
pub storage_path: Option<String>,
pub error: Option<String>,
pub encrypted: bool,
pub compression: Option<String>,
}Expand description
Backup information
Fields§
§backup_id: String§name: String§backup_type: String§status: String§namespaces: Vec<String>§vector_count: u64§size_bytes: u64§created_at: u64§completed_at: Option<u64>§duration_seconds: Option<u64>§storage_path: Option<String>§error: Option<String>§encrypted: bool§compression: Option<String>Trait Implementations§
Source§impl Clone for BackupInfo
impl Clone for BackupInfo
Source§fn clone(&self) -> BackupInfo
fn clone(&self) -> BackupInfo
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 BackupInfo
impl Debug for BackupInfo
Source§impl<'de> Deserialize<'de> for BackupInfo
impl<'de> Deserialize<'de> for BackupInfo
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 BackupInfo
impl RefUnwindSafe for BackupInfo
impl Send for BackupInfo
impl Sync for BackupInfo
impl Unpin for BackupInfo
impl UnsafeUnpin for BackupInfo
impl UnwindSafe for BackupInfo
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