pub enum Outcome {
Absent,
Relinked(PathBuf),
Failed(PathBuf, String),
}Expand description
What refresh found and did.
Variants§
Absent
This install has only the one name - nothing to refresh.
Relinked(PathBuf)
The second name was re-pointed at the new binary.
Failed(PathBuf, String)
The second name is installed but could not be re-pointed; it is stale and the user has to be told, since it still answers under its own name.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Outcome
Auto Trait Implementations§
impl Freeze for Outcome
impl RefUnwindSafe for Outcome
impl Send for Outcome
impl Sync for Outcome
impl Unpin for Outcome
impl UnsafeUnpin for Outcome
impl UnwindSafe for Outcome
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