pub type Result<T> = Result<T, ModelRuntimeError>;Expand description
Result type used by generic model runtime infrastructure.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ModelRuntimeError),
}pub type Result<T> = Result<T, ModelRuntimeError>;Result type used by generic model runtime infrastructure.
pub enum Result<T> {
Ok(T),
Err(ModelRuntimeError),
}