pub struct BackupManifest {
pub version: u32,
pub created_at: String,
pub oxios_version: String,
pub sections: Vec<BackupSection>,
}Expand description
Backup manifest.
Fields§
§version: u32Manifest format version.
created_at: StringTimestamp when the backup was created.
oxios_version: StringOxios version that created the backup.
sections: Vec<BackupSection>Sections included in the backup.
Trait Implementations§
Source§impl Debug for BackupManifest
impl Debug for BackupManifest
Source§impl<'de> Deserialize<'de> for BackupManifest
impl<'de> Deserialize<'de> for BackupManifest
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 BackupManifest
impl RefUnwindSafe for BackupManifest
impl Send for BackupManifest
impl Sync for BackupManifest
impl Unpin for BackupManifest
impl UnsafeUnpin for BackupManifest
impl UnwindSafe for BackupManifest
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