pub struct InstallReport {
pub prefix: PathBuf,
pub installed: Vec<PathBuf>,
pub skipped_already_present: bool,
pub skipped_lock_busy: bool,
pub url: String,
pub cache_hit: bool,
}Fields§
§prefix: PathBuf§installed: Vec<PathBuf>§skipped_already_present: bool§skipped_lock_busy: boolSet when LockBehavior::SkipIfBusy and another process is currently
holding the install lock. Caller can choose to retry later.
url: String§cache_hit: boolSet when the archive came from the on-disk cache under
<cache_dir>/symbols/ rather than the network.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InstallReport
impl RefUnwindSafe for InstallReport
impl Send for InstallReport
impl Sync for InstallReport
impl Unpin for InstallReport
impl UnsafeUnpin for InstallReport
impl UnwindSafe for InstallReport
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