pub type Result<T> = Result<T, Error>;Expand description
Result type alias for runtime tensor operations.
§Examples
use tenferro_tensor::{Error, Result};
let output: Result<()> = Err(Error::MissingValue { slot: 0 });Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}