pub trait RawTensorModel: ModelInfo {
// Required methods
fn run<'life0, 'life1, 'async_trait>(
&'life0 self,
inputs: &'life1 TensorBatch,
) -> Pin<Box<dyn Future<Output = Result<TensorBatch>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn input_signature(&self) -> &[TensorSpec];
fn output_signature(&self) -> &[TensorSpec];
// Provided methods
fn run_batch<'life0, 'life1, 'async_trait>(
&'life0 self,
inputs: &'life1 [TensorBatch],
) -> Pin<Box<dyn Future<Output = Result<Vec<TensorBatch>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait { ... }
fn max_batch_size(&self) -> usize { ... }
fn warmup<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
}Required Methods§
fn run<'life0, 'life1, 'async_trait>(
&'life0 self,
inputs: &'life1 TensorBatch,
) -> Pin<Box<dyn Future<Output = Result<TensorBatch>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn input_signature(&self) -> &[TensorSpec]
fn output_signature(&self) -> &[TensorSpec]
Provided Methods§
fn run_batch<'life0, 'life1, 'async_trait>(
&'life0 self,
inputs: &'life1 [TensorBatch],
) -> Pin<Box<dyn Future<Output = Result<Vec<TensorBatch>>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn max_batch_size(&self) -> usize
fn warmup<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: Sync + 'async_trait,
'life0: 'async_trait,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".