pub struct DownloadedChecksum {
pub checksum: String,
pub file_name: String,
}
Expand description
The expected checksum of a compatibility tool and the checksum file name.
The checksum is provided as a sha512sum
file.
Fields§
§checksum: String
§file_name: String
Implementations§
Auto Trait Implementations§
impl Freeze for DownloadedChecksum
impl RefUnwindSafe for DownloadedChecksum
impl Send for DownloadedChecksum
impl Sync for DownloadedChecksum
impl Unpin for DownloadedChecksum
impl UnwindSafe for DownloadedChecksum
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