pub struct M3U8Downloader;Trait Implementations§
Source§impl Downloader for M3U8Downloader
impl Downloader for M3U8Downloader
fn download<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
url: &'life1 str,
output_file: &'life2 Path,
) -> Pin<Box<dyn Future<Output = Result<(), Box<dyn Error>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
fn download_ts_file<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
url: &'life1 str,
output_file: &'life2 mut BufWriter<File>,
pb: &'life3 mut ProgressBar,
) -> Pin<Box<dyn Future<Output = Result<(), Box<dyn Error>>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Auto Trait Implementations§
impl Freeze for M3U8Downloader
impl RefUnwindSafe for M3U8Downloader
impl Send for M3U8Downloader
impl Sync for M3U8Downloader
impl Unpin for M3U8Downloader
impl UnwindSafe for M3U8Downloader
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