pub enum InstallStatus {
Installed,
Unchanged,
Conflict,
DryRun,
}Variants§
Installed
Fresh install; nothing previously registered.
Unchanged
Already installed and matched the desired state — no writes.
Conflict
Already installed but with different command/args. With force
the entry is rewritten; without it the installer refuses.
DryRun
Dry-run — nothing touched. planned_writes describes the diff.
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 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.