pub enum InstallStatus {
Yes,
No,
Unknown,
}Expand description
Whether an agent is installed on the machine.
Variants§
Yes
The agent’s install marker (config dir or binary) was found.
No
No traces found.
Unknown
We couldn’t determine — e.g. the marker exists but is empty/ambiguous.
Trait Implementations§
Source§impl Clone for InstallStatus
impl Clone for InstallStatus
Source§fn clone(&self) -> InstallStatus
fn clone(&self) -> InstallStatus
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 InstallStatus
impl Debug for InstallStatus
Source§impl PartialEq for InstallStatus
impl PartialEq for InstallStatus
Source§fn eq(&self, other: &InstallStatus) -> bool
fn eq(&self, other: &InstallStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InstallStatus
impl Serialize for InstallStatus
impl Copy for InstallStatus
impl Eq for InstallStatus
impl StructuralPartialEq for InstallStatus
Auto Trait Implementations§
impl Freeze for InstallStatus
impl RefUnwindSafe for InstallStatus
impl Send for InstallStatus
impl Sync for InstallStatus
impl Unpin for InstallStatus
impl UnsafeUnpin for InstallStatus
impl UnwindSafe for InstallStatus
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.