pub struct LinuxIDMappingBuilder { /* private fields */ }
Expand description
Builder for LinuxIDMapping
.
Implementations§
Source§impl LinuxIDMappingBuilder
impl LinuxIDMappingBuilder
Sourcepub fn container_id<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
pub fn container_id<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
ContainerID is the starting UID/GID in the container
Sourcepub fn host_id<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
pub fn host_id<VALUE: Into<u32>>(&mut self, value: VALUE) -> &mut Self
HostID is the starting UID/GID on the host to be mapped to ‘ContainerID’
Trait Implementations§
Source§impl Clone for LinuxIDMappingBuilder
impl Clone for LinuxIDMappingBuilder
Source§fn clone(&self) -> LinuxIDMappingBuilder
fn clone(&self) -> LinuxIDMappingBuilder
Returns a copy 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 moreSource§impl Default for LinuxIDMappingBuilder
impl Default for LinuxIDMappingBuilder
Source§fn default() -> LinuxIDMappingBuilder
fn default() -> LinuxIDMappingBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LinuxIDMappingBuilder
impl RefUnwindSafe for LinuxIDMappingBuilder
impl Send for LinuxIDMappingBuilder
impl Sync for LinuxIDMappingBuilder
impl Unpin for LinuxIDMappingBuilder
impl UnwindSafe for LinuxIDMappingBuilder
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