pub struct DownloadStarted {
pub resource_name: Option<String>,
pub dataset_name: Option<String>,
pub url: String,
pub output_path: PathBuf,
pub total_bytes: Option<u64>,
}Fields§
§resource_name: Option<String>§dataset_name: Option<String>§url: String§output_path: PathBuf§total_bytes: Option<u64>Trait Implementations§
Source§impl Clone for DownloadStarted
impl Clone for DownloadStarted
Source§fn clone(&self) -> DownloadStarted
fn clone(&self) -> DownloadStarted
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 moreAuto Trait Implementations§
impl Freeze for DownloadStarted
impl RefUnwindSafe for DownloadStarted
impl Send for DownloadStarted
impl Sync for DownloadStarted
impl Unpin for DownloadStarted
impl UnwindSafe for DownloadStarted
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