Trait DownloadErrorFile

Source
pub trait DownloadErrorFile<E> {
    // Required method
    fn download_error_file<'life0, 'life1, 'async_trait>(
        &'life0 mut self,
        client: &'life1 dyn LanguageModelClientInterface<E>,
    ) -> Pin<Box<dyn Future<Output = Result<(), E>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}

Required Methods§

Source

fn download_error_file<'life0, 'life1, 'async_trait>( &'life0 mut self, client: &'life1 dyn LanguageModelClientInterface<E>, ) -> Pin<Box<dyn Future<Output = Result<(), E>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementations on Foreign Types§

Source§

impl<E> DownloadErrorFile<E> for BatchFileTriple

Source§

fn download_error_file<'life0, 'life1, 'async_trait>( &'life0 mut self, client: &'life1 dyn LanguageModelClientInterface<E>, ) -> Pin<Box<dyn Future<Output = Result<(), E>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Implementors§