pub struct AncestorEntry {
pub identity: ProcessIdentity,
pub name: Box<str>,
}Expand description
One entry in a process’s ancestry chain.
Fields§
§identity: ProcessIdentityThe ancestor’s identity.
name: Box<str>The ancestor’s short name, for the breadcrumb (§2.4).
Trait Implementations§
Source§impl Clone for AncestorEntry
impl Clone for AncestorEntry
Source§fn clone(&self) -> AncestorEntry
fn clone(&self) -> AncestorEntry
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 moreSource§impl Debug for AncestorEntry
impl Debug for AncestorEntry
Source§impl PartialEq for AncestorEntry
impl PartialEq for AncestorEntry
impl StructuralPartialEq for AncestorEntry
Auto Trait Implementations§
impl Freeze for AncestorEntry
impl RefUnwindSafe for AncestorEntry
impl Send for AncestorEntry
impl Sync for AncestorEntry
impl Unpin for AncestorEntry
impl UnsafeUnpin for AncestorEntry
impl UnwindSafe for AncestorEntry
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