pub struct DownloadedArchive {
pub path: PathBuf,
pub sha256: String,
}Expand description
Result of a successful archive download.
Fields§
§path: PathBufTemporary file containing the zip bytes.
sha256: StringSHA-256 hex digest of the downloaded bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DownloadedArchive
impl RefUnwindSafe for DownloadedArchive
impl Send for DownloadedArchive
impl Sync for DownloadedArchive
impl Unpin for DownloadedArchive
impl UnsafeUnpin for DownloadedArchive
impl UnwindSafe for DownloadedArchive
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