#[repr(u32)]pub enum CloneNamespace {
Inherit = 0,
NewUserPid = 805_306_368,
}
Expand description
Controls what namespace clone_process
will have. See NAMESPACES(7).
Variants§
Inherit = 0
The new process will inherit the namespace from the old process.
NewUserPid = 805_306_368
The new process with be in a new user and PID namespace.
Auto Trait Implementations§
impl Freeze for CloneNamespace
impl RefUnwindSafe for CloneNamespace
impl Send for CloneNamespace
impl Sync for CloneNamespace
impl Unpin for CloneNamespace
impl UnwindSafe for CloneNamespace
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