pub struct PidNamespaceId {
pub dev: Option<u64>,
pub inode: u64,
}Fields§
§dev: Option<u64>Device id is only present when GhostScope resolved a helper-usable namespace handle.
Some procfs-derived paths only expose the inode, so dev remains None until
we collect the extra information needed by bpf_get_ns_current_pid_tgid.
inode: u64Implementations§
Source§impl PidNamespaceId
impl PidNamespaceId
pub fn helper_dev_inode(self) -> Option<(u64, u64)>
Trait Implementations§
Source§impl Clone for PidNamespaceId
impl Clone for PidNamespaceId
Source§fn clone(&self) -> PidNamespaceId
fn clone(&self) -> PidNamespaceId
Returns a duplicate 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 Debug for PidNamespaceId
impl Debug for PidNamespaceId
Source§impl PartialEq for PidNamespaceId
impl PartialEq for PidNamespaceId
impl Copy for PidNamespaceId
impl Eq for PidNamespaceId
impl StructuralPartialEq for PidNamespaceId
Auto Trait Implementations§
impl Freeze for PidNamespaceId
impl RefUnwindSafe for PidNamespaceId
impl Send for PidNamespaceId
impl Sync for PidNamespaceId
impl Unpin for PidNamespaceId
impl UnsafeUnpin for PidNamespaceId
impl UnwindSafe for PidNamespaceId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more