pub struct InstallPlan {
pub crate_root: PathBuf,
pub manifest_path: PathBuf,
pub bin_name: String,
pub install_dir: PathBuf,
pub wrapper_path: PathBuf,
pub wrapper_contents: String,
pub warn_path_missing: bool,
}Fields§
§crate_root: PathBuf§manifest_path: PathBuf§bin_name: String§install_dir: PathBuf§wrapper_path: PathBuf§wrapper_contents: String§warn_path_missing: boolTrait Implementations§
Source§impl Clone for InstallPlan
impl Clone for InstallPlan
Source§fn clone(&self) -> InstallPlan
fn clone(&self) -> InstallPlan
Returns a duplicate of the value. Read more
1.0.0 · 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 InstallPlan
impl Debug for InstallPlan
Source§impl PartialEq for InstallPlan
impl PartialEq for InstallPlan
impl Eq for InstallPlan
impl StructuralPartialEq for InstallPlan
Auto Trait Implementations§
impl Freeze for InstallPlan
impl RefUnwindSafe for InstallPlan
impl Send for InstallPlan
impl Sync for InstallPlan
impl Unpin for InstallPlan
impl UnwindSafe for InstallPlan
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