Type Alias Result
Source 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 });
pub enum Result<T> {
Ok(T),
Err(Error),
}
Contains the success value