pub struct ExternalMountWarning {
pub guest_path: String,
pub reason: String,
pub stale_inodes: Vec<u64>,
}Expand description
An unmapped external filesystem or a mismatch accepted during relaxed full restore.
Fields§
§guest_path: StringGuest-visible mount path.
reason: StringActionable reason the resource could not be reconstructed.
stale_inodes: Vec<u64>Permanently invalid captured node IDs; empty when the whole export is unavailable.
Trait Implementations§
Source§impl Clone for ExternalMountWarning
impl Clone for ExternalMountWarning
Source§fn clone(&self) -> ExternalMountWarning
fn clone(&self) -> ExternalMountWarning
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 ExternalMountWarning
impl Debug for ExternalMountWarning
Source§impl<'de> Deserialize<'de> for ExternalMountWarning
impl<'de> Deserialize<'de> for ExternalMountWarning
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 ExternalMountWarning
Source§impl PartialEq for ExternalMountWarning
impl PartialEq for ExternalMountWarning
Source§impl Serialize for ExternalMountWarning
impl Serialize for ExternalMountWarning
impl StructuralPartialEq for ExternalMountWarning
Auto Trait Implementations§
impl Freeze for ExternalMountWarning
impl RefUnwindSafe for ExternalMountWarning
impl Send for ExternalMountWarning
impl Sync for ExternalMountWarning
impl Unpin for ExternalMountWarning
impl UnsafeUnpin for ExternalMountWarning
impl UnwindSafe for ExternalMountWarning
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