pub struct BootstrapDirMount {
pub tag: String,
pub guest_path: String,
pub flags: BootstrapMountFlags,
}Expand description
Guest-side virtiofs directory mount.
Fields§
§tag: StringVirtiofs device tag.
guest_path: StringAbsolute guest mount path.
flags: BootstrapMountFlagsGuest mount flags.
Trait Implementations§
Source§impl Clone for BootstrapDirMount
impl Clone for BootstrapDirMount
Source§fn clone(&self) -> BootstrapDirMount
fn clone(&self) -> BootstrapDirMount
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 BootstrapDirMount
impl Debug for BootstrapDirMount
Source§impl<'de> Deserialize<'de> for BootstrapDirMount
impl<'de> Deserialize<'de> for BootstrapDirMount
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 BootstrapDirMount
Source§impl PartialEq for BootstrapDirMount
impl PartialEq for BootstrapDirMount
Source§impl Serialize for BootstrapDirMount
impl Serialize for BootstrapDirMount
impl StructuralPartialEq for BootstrapDirMount
Auto Trait Implementations§
impl Freeze for BootstrapDirMount
impl RefUnwindSafe for BootstrapDirMount
impl Send for BootstrapDirMount
impl Sync for BootstrapDirMount
impl Unpin for BootstrapDirMount
impl UnsafeUnpin for BootstrapDirMount
impl UnwindSafe for BootstrapDirMount
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