pub struct ContainerMount {
pub destination: Option<String>,
pub options: Option<Vec<String>>,
pub source: Option<String>,
pub _type: Option<String>,
pub uid_mappings: Option<Vec<IdMap>>,
pub gid_mappings: Option<Vec<IdMap>>,
}
Fields§
§destination: Option<String>
§options: Option<Vec<String>>
§source: Option<String>
§_type: Option<String>
§uid_mappings: Option<Vec<IdMap>>
§gid_mappings: Option<Vec<IdMap>>
Trait Implementations§
Source§impl Clone for ContainerMount
impl Clone for ContainerMount
Source§fn clone(&self) -> ContainerMount
fn clone(&self) -> ContainerMount
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ContainerMount
impl Debug for ContainerMount
Auto Trait Implementations§
impl Freeze for ContainerMount
impl RefUnwindSafe for ContainerMount
impl Send for ContainerMount
impl Sync for ContainerMount
impl Unpin for ContainerMount
impl UnwindSafe for ContainerMount
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