pub struct BootstrapDiskMount {
pub id: String,
pub guest_path: String,
pub fstype: Option<String>,
pub flags: BootstrapMountFlags,
}Expand description
Guest-side block-device mount.
Fields§
§id: StringVirtio block-device identifier.
guest_path: StringAbsolute guest mount path.
fstype: Option<String>Filesystem type, or None to probe inside the guest.
flags: BootstrapMountFlagsGuest mount flags.
Trait Implementations§
Source§impl Clone for BootstrapDiskMount
impl Clone for BootstrapDiskMount
Source§fn clone(&self) -> BootstrapDiskMount
fn clone(&self) -> BootstrapDiskMount
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 BootstrapDiskMount
impl Debug for BootstrapDiskMount
Source§impl<'de> Deserialize<'de> for BootstrapDiskMount
impl<'de> Deserialize<'de> for BootstrapDiskMount
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 BootstrapDiskMount
Source§impl PartialEq for BootstrapDiskMount
impl PartialEq for BootstrapDiskMount
Source§impl Serialize for BootstrapDiskMount
impl Serialize for BootstrapDiskMount
impl StructuralPartialEq for BootstrapDiskMount
Auto Trait Implementations§
impl Freeze for BootstrapDiskMount
impl RefUnwindSafe for BootstrapDiskMount
impl Send for BootstrapDiskMount
impl Sync for BootstrapDiskMount
impl Unpin for BootstrapDiskMount
impl UnsafeUnpin for BootstrapDiskMount
impl UnwindSafe for BootstrapDiskMount
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