Trait ort_core::MakeOrt[][src]

pub trait MakeOrt<T>: Clone + Send + 'static {
    type Ort: Ort;
    fn make_ort<'life0, 'async_trait>(
        &'life0 mut self,
        target: T
    ) -> Pin<Box<dyn Future<Output = Result<Self::Ort, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Associated Types

Required methods

Implementors