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