pub struct LiveProcessCandidate {
pub tree: ProcessTree,
pub agent: String,
pub age_s: Option<f64>,
pub cwd: Option<String>,
}Fields§
§tree: ProcessTree§agent: String§age_s: Option<f64>§cwd: Option<String>Trait Implementations§
Source§impl Clone for LiveProcessCandidate
impl Clone for LiveProcessCandidate
Source§fn clone(&self) -> LiveProcessCandidate
fn clone(&self) -> LiveProcessCandidate
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 LiveProcessCandidate
impl Debug for LiveProcessCandidate
Source§impl Default for LiveProcessCandidate
impl Default for LiveProcessCandidate
Source§fn default() -> LiveProcessCandidate
fn default() -> LiveProcessCandidate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LiveProcessCandidate
impl RefUnwindSafe for LiveProcessCandidate
impl Send for LiveProcessCandidate
impl Sync for LiveProcessCandidate
impl Unpin for LiveProcessCandidate
impl UnsafeUnpin for LiveProcessCandidate
impl UnwindSafe for LiveProcessCandidate
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