Trait CheckBatchStatusOnline

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

Required Methods§

Source

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

Implementors§