pub struct DownloadedArchive {
pub compressed_content: Vec<u8>,
pub file_name: String,
}Expand description
The compressed archive of the compatibility tool and file name.
For GE Proton the archive is provided as a tar.gz file.
For Wine GE the archive is provide as a tar.xz file.
Fields§
§compressed_content: Vec<u8>§file_name: StringImplementations§
Auto Trait Implementations§
impl Freeze for DownloadedArchive
impl RefUnwindSafe for DownloadedArchive
impl Send for DownloadedArchive
impl Sync for DownloadedArchive
impl Unpin 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