pub struct FileSnapshotState {
pub format: SnapshotFormat,
pub fstype: String,
pub upper: UpperLayer,
}Expand description
Concrete file-backed snapshot state.
Fields§
§format: SnapshotFormatOn-disk payload format.
fstype: StringFilesystem type inside the payload.
upper: UpperLayerFile-backed upper-layer binding.
Trait Implementations§
Source§impl Clone for FileSnapshotState
impl Clone for FileSnapshotState
Source§fn clone(&self) -> FileSnapshotState
fn clone(&self) -> FileSnapshotState
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 FileSnapshotState
impl Debug for FileSnapshotState
Source§impl<'de> Deserialize<'de> for FileSnapshotState
impl<'de> Deserialize<'de> for FileSnapshotState
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
impl Eq for FileSnapshotState
Source§impl PartialEq for FileSnapshotState
impl PartialEq for FileSnapshotState
Source§impl Serialize for FileSnapshotState
impl Serialize for FileSnapshotState
impl StructuralPartialEq for FileSnapshotState
Auto Trait Implementations§
impl Freeze for FileSnapshotState
impl RefUnwindSafe for FileSnapshotState
impl Send for FileSnapshotState
impl Sync for FileSnapshotState
impl Unpin for FileSnapshotState
impl UnsafeUnpin for FileSnapshotState
impl UnwindSafe for FileSnapshotState
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