pub struct DownloadedAssets {
pub tag: String,
pub compressed_archive: DownloadedArchive,
pub checksum: Option<DownloadedChecksum>,
}
Expand description
Assets of a GE Proton or Wine GE release.
Fields§
§tag: String
Tag name of the release.
compressed_archive: DownloadedArchive
The compressed archive.
checksum: Option<DownloadedChecksum>
The checksum of the compressed archive.
The checksum
for a archive can be None
if download_checksum
in DownloadRequest
is
set to false.
Implementations§
Source§impl DownloadedAssets
impl DownloadedAssets
pub fn new( tag: String, compressed_archive: DownloadedArchive, checksum: Option<DownloadedChecksum>, ) -> Self
Auto Trait Implementations§
impl Freeze for DownloadedAssets
impl RefUnwindSafe for DownloadedAssets
impl Send for DownloadedAssets
impl Sync for DownloadedAssets
impl Unpin for DownloadedAssets
impl UnwindSafe for DownloadedAssets
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