/// Error type for RustNN
#[derive(Debug, PartialEq)]pubenumError{/// Indicates some dimension is incorrect in a Matrix operation.
DimensionErr,/// Indicates an error that occured due to library's multithreading
ThreadErr,}pubtypeResult<T>=std::result::Result<T, Error>;