pub type NeuralResult<T> = Result<T, NeuralError>;Expand description
a type alias for a Result configured to use the NeuralError
implementation as its error type.
Aliased Type§
pub enum NeuralResult<T> {
Ok(T),
Err(NeuralError),
}pub type NeuralResult<T> = Result<T, NeuralError>;a type alias for a Result configured to use the NeuralError
implementation as its error type.
pub enum NeuralResult<T> {
Ok(T),
Err(NeuralError),
}