Ort

Trait Ort 

Source
pub trait Ort:
    Clone
    + Send
    + 'static {
    // Required method
    fn ort<'life0, 'async_trait>(
        &'life0 mut self,
        spec: Spec,
    ) -> Pin<Box<dyn Future<Output = Result<Reply, Error>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn ort<'life0, 'async_trait>( &'life0 mut self, spec: Spec, ) -> Pin<Box<dyn Future<Output = Result<Reply, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<A, O> Ort for Limit<A, O>
where A: Acquire, O: Ort,