pub struct DownloadOutcome {
pub planned_job: PlannedJob,
pub result: Result<PathBuf, SpsError>,
}
Expand description
Outcome of a download attempt, sent from DownloadCoordinator to the main runner loop.
Fields§
§planned_job: PlannedJob
§result: Result<PathBuf, SpsError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DownloadOutcome
impl !RefUnwindSafe for DownloadOutcome
impl Send for DownloadOutcome
impl Sync for DownloadOutcome
impl Unpin for DownloadOutcome
impl !UnwindSafe for DownloadOutcome
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