Trait yuyu_core::VideoExtractor[][src]

pub trait VideoExtractor: Extractor {
    #[must_use]
    fn get_video<'life0, 'life1, 'async_trait>(
        &'life0 self,
        url: &'life1 str
    ) -> Pin<Box<dyn Future<Output = Result<Video>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]
fn get_video<'life0, 'life1, 'async_trait>(
    &'life0 self,
    url: &'life1 str
) -> Pin<Box<dyn Future<Output = Result<Video>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

Loading content...

Implementors

impl VideoExtractor for Youtube[src]

Loading content...