pub struct ResolvedMount {
pub kind: String,
pub source: Option<PathBuf>,
pub target: String,
pub read_only: bool,
pub is_workspace: bool,
pub create: bool,
}Fields§
§kind: String§source: Option<PathBuf>§target: String§read_only: bool§is_workspace: bool§create: boolWhen true, the host source directory is created automatically if it does not exist.
Trait Implementations§
Source§impl Clone for ResolvedMount
impl Clone for ResolvedMount
Source§fn clone(&self) -> ResolvedMount
fn clone(&self) -> ResolvedMount
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResolvedMount
impl RefUnwindSafe for ResolvedMount
impl Send for ResolvedMount
impl Sync for ResolvedMount
impl Unpin for ResolvedMount
impl UnsafeUnpin for ResolvedMount
impl UnwindSafe for ResolvedMount
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