pub struct PackageInstallResult {
pub name: String,
pub install_path: PathBuf,
pub linked_files: Vec<PathBuf>,
}Expand description
Result of a single package installation
Fields§
§name: StringPackage name
install_path: PathBufPath where package was installed in Cellar
linked_files: Vec<PathBuf>Linked files
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PackageInstallResult
impl RefUnwindSafe for PackageInstallResult
impl Send for PackageInstallResult
impl Sync for PackageInstallResult
impl Unpin for PackageInstallResult
impl UnwindSafe for PackageInstallResult
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