pub struct CgroupStorageKey { /* private fields */ }Expand description
A key into a CgroupStorage or PerCpuCgroupStorage map.
The kernel keys cgroup storage entries by the cgroup inode id and the attach
type of the program that created them. Only this isolated key layout is
supported; the shared u64 cgroup-inode-id key added in Linux 5.9 is not.
Implementations§
Trait Implementations§
Source§impl Clone for CgroupStorageKey
impl Clone for CgroupStorageKey
Source§fn clone(&self) -> CgroupStorageKey
fn clone(&self) -> CgroupStorageKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CgroupStorageKey
Auto Trait Implementations§
impl Freeze for CgroupStorageKey
impl RefUnwindSafe for CgroupStorageKey
impl Send for CgroupStorageKey
impl Sync for CgroupStorageKey
impl Unpin for CgroupStorageKey
impl UnsafeUnpin for CgroupStorageKey
impl UnwindSafe for CgroupStorageKey
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