pub struct PidNamespace { /* private fields */ }
Expand description
Wraps the kernel’s struct pid_namespace
. Thread safe.
This structure represents the Rust abstraction for a C struct pid_namespace
. This
implementation abstracts the usage of an already existing C struct pid_namespace
within Rust
code that we get passed from the C side.
Implementations§
Source§impl PidNamespace
impl PidNamespace
Sourcepub unsafe fn from_ptr<'a>(ptr: *const pid_namespace) -> &'a Self
pub unsafe fn from_ptr<'a>(ptr: *const pid_namespace) -> &'a Self
Creates a reference to a PidNamespace
from a valid pointer.
§Safety
The caller must ensure that ptr
is valid and remains valid for the lifetime of the
returned PidNamespace
reference.
Trait Implementations§
Source§impl AlwaysRefCounted for PidNamespace
impl AlwaysRefCounted for PidNamespace
impl Send for PidNamespace
impl Sync for PidNamespace
Auto Trait Implementations§
impl !Freeze for PidNamespace
impl !RefUnwindSafe for PidNamespace
impl !Unpin for PidNamespace
impl UnwindSafe for PidNamespace
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