pub struct AdminBackupInfo {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 AdminBackupInfo
impl Clone for AdminBackupInfo
Source§fn clone(&self) -> AdminBackupInfo
fn clone(&self) -> AdminBackupInfo
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 AdminBackupInfo
impl Debug for AdminBackupInfo
Source§impl<'de> Deserialize<'de> for AdminBackupInfo
impl<'de> Deserialize<'de> for AdminBackupInfo
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 AdminBackupInfo
impl RefUnwindSafe for AdminBackupInfo
impl Send for AdminBackupInfo
impl Sync for AdminBackupInfo
impl Unpin for AdminBackupInfo
impl UnsafeUnpin for AdminBackupInfo
impl UnwindSafe for AdminBackupInfo
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