pub struct RunningAppProcess {
pub pid: u64,
pub bundle_id: Option<String>,
pub name: String,
pub executable: Option<String>,
pub is_application: Option<bool>,
}Expand description
Running process entry returned by list_processes.
Fields§
§pid: u64Process identifier.
bundle_id: Option<String>Bundle identifier when the process maps to an app.
name: StringDisplay or executable name reported by CoreDevice.
executable: Option<String>Executable path or name when present in the response.
is_application: Option<bool>Whether CoreDevice classified the process as an application.
Trait Implementations§
Source§impl Clone for RunningAppProcess
impl Clone for RunningAppProcess
Source§fn clone(&self) -> RunningAppProcess
fn clone(&self) -> RunningAppProcess
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 RunningAppProcess
impl Debug for RunningAppProcess
Source§impl PartialEq for RunningAppProcess
impl PartialEq for RunningAppProcess
Source§fn eq(&self, other: &RunningAppProcess) -> bool
fn eq(&self, other: &RunningAppProcess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RunningAppProcess
impl StructuralPartialEq for RunningAppProcess
Auto Trait Implementations§
impl Freeze for RunningAppProcess
impl RefUnwindSafe for RunningAppProcess
impl Send for RunningAppProcess
impl Sync for RunningAppProcess
impl Unpin for RunningAppProcess
impl UnsafeUnpin for RunningAppProcess
impl UnwindSafe for RunningAppProcess
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.