pub struct ChildProcessInfo {
pub pid: u32,
pub ppid: u32,
pub name: String,
pub memory_bytes: Option<u64>,
}Expand description
Information about a child process of the Tauri application.
Fields§
§pid: u32Process ID.
ppid: u32Parent process ID.
name: StringExecutable name (not full path).
memory_bytes: Option<u64>Memory usage in bytes (working set / RSS), if available.
Trait Implementations§
Source§impl Clone for ChildProcessInfo
impl Clone for ChildProcessInfo
Source§fn clone(&self) -> ChildProcessInfo
fn clone(&self) -> ChildProcessInfo
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 ChildProcessInfo
impl Debug for ChildProcessInfo
Auto Trait Implementations§
impl Freeze for ChildProcessInfo
impl RefUnwindSafe for ChildProcessInfo
impl Send for ChildProcessInfo
impl Sync for ChildProcessInfo
impl Unpin for ChildProcessInfo
impl UnsafeUnpin for ChildProcessInfo
impl UnwindSafe for ChildProcessInfo
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