pub struct Application {
pub id: String,
pub bundle_identifier: String,
pub pid: u64,
pub name: String,
pub availability: AutomationAvailability,
pub is_active: bool,
pub is_proxy: bool,
pub is_ready: bool,
pub host_application_identifier: Option<String>,
}Fields§
§id: String§bundle_identifier: String§pid: u64§name: String§availability: AutomationAvailability§is_active: bool§is_proxy: bool§is_ready: bool§host_application_identifier: Option<String>Trait Implementations§
Source§impl Clone for Application
impl Clone for Application
Source§fn clone(&self) -> Application
fn clone(&self) -> Application
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 Application
impl Debug for Application
Source§impl PartialEq for Application
impl PartialEq for Application
Source§fn eq(&self, other: &Application) -> bool
fn eq(&self, other: &Application) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Application
impl Serialize for Application
impl Eq for Application
impl StructuralPartialEq for Application
Auto Trait Implementations§
impl Freeze for Application
impl RefUnwindSafe for Application
impl Send for Application
impl Sync for Application
impl Unpin for Application
impl UnsafeUnpin for Application
impl UnwindSafe for Application
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.