pub type Result<T> = Result<T, NaiveBayesError>;Expand description
Simplified Result using NaiveBayesError as error type
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(NaiveBayesError),
}pub type Result<T> = Result<T, NaiveBayesError>;Simplified Result using NaiveBayesError as error type
pub enum Result<T> {
Ok(T),
Err(NaiveBayesError),
}