pub struct InstallSummary {
pub handle: String,
pub target: String,
pub version: String,
pub written: Vec<String>,
pub skipped: bool,
pub unpinned: bool,
}Expand description
Outcome of an install.
Fields§
§handle: String§target: String§version: String§written: Vec<String>§skipped: boolTrue when the artifact was already installed at this version (no writes).
unpinned: boolTrue when the manifest is not pinned to an immutable commit sha.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InstallSummary
impl RefUnwindSafe for InstallSummary
impl Send for InstallSummary
impl Sync for InstallSummary
impl Unpin for InstallSummary
impl UnsafeUnpin for InstallSummary
impl UnwindSafe for InstallSummary
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