pub type CnnResult<T> = Result<T, CnnError>;
Result type for CNN operations.
pub enum CnnResult<T> { Ok(T), Err(CnnError), }
Contains the success value
Contains the error value