pub trait DownloadTask: Send + Sync + Display + DownloadTaskControl + TaskSchedule {
    fn clone_as_download_task(&self) -> Box<dyn DownloadTask>Notable traits for Box<F, A>impl<F, A> Future for Box<F, A> where
    F: Future + Unpin + ?Sized,
    A: Allocator + 'static, 
type Output = <F as Future>::Output;
; }

Required Methods

Implementors