pub struct DownloadCapture {
pub file_name: String,
pub filename: Option<String>,
pub mime_type: Option<String>,
pub bytes: Vec<u8>,
}Fields§
§file_name: String§filename: Option<String>§mime_type: Option<String>§bytes: Vec<u8>Trait Implementations§
Source§impl Clone for DownloadCapture
impl Clone for DownloadCapture
Source§fn clone(&self) -> DownloadCapture
fn clone(&self) -> DownloadCapture
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DownloadCapture
impl Debug for DownloadCapture
Source§impl Default for DownloadCapture
impl Default for DownloadCapture
Source§fn default() -> DownloadCapture
fn default() -> DownloadCapture
Returns the “default value” for a type. Read more
Source§impl PartialEq for DownloadCapture
impl PartialEq for DownloadCapture
impl Eq for DownloadCapture
impl StructuralPartialEq for DownloadCapture
Auto Trait Implementations§
impl Freeze for DownloadCapture
impl RefUnwindSafe for DownloadCapture
impl Send for DownloadCapture
impl Sync for DownloadCapture
impl Unpin for DownloadCapture
impl UnsafeUnpin for DownloadCapture
impl UnwindSafe for DownloadCapture
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