pub struct ShimInstallEntry {
pub command: String,
pub outcome: ShimInstallOutcome,
pub resolved_path: Option<PathBuf>,
pub shim_path: PathBuf,
}Fields§
§command: String§outcome: ShimInstallOutcome§resolved_path: Option<PathBuf>The absolute path of the real binary that was baked into the
shim, when we got that far. None when the outcome was
UpstreamBinaryNotFound or ForeignPresent.
shim_path: PathBufWhere the shim was (or would have been) written.
Trait Implementations§
Source§impl Clone for ShimInstallEntry
impl Clone for ShimInstallEntry
Source§fn clone(&self) -> ShimInstallEntry
fn clone(&self) -> ShimInstallEntry
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 moreAuto Trait Implementations§
impl Freeze for ShimInstallEntry
impl RefUnwindSafe for ShimInstallEntry
impl Send for ShimInstallEntry
impl Sync for ShimInstallEntry
impl Unpin for ShimInstallEntry
impl UnsafeUnpin for ShimInstallEntry
impl UnwindSafe for ShimInstallEntry
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