pub struct DownloadedFile {
pub name: String,
pub data: Bytes,
pub md5: [u8; 16],
}
Fields§
§name: String
§data: Bytes
§md5: [u8; 16]
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for DownloadedFile
impl RefUnwindSafe for DownloadedFile
impl Send for DownloadedFile
impl Sync for DownloadedFile
impl Unpin for DownloadedFile
impl UnwindSafe for DownloadedFile
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