pub type Result<T> = Result<T, BayesError>;
Expand description
Result type alias for convenience
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(BayesError),
}
pub type Result<T> = Result<T, BayesError>;
Result type alias for convenience
pub enum Result<T> {
Ok(T),
Err(BayesError),
}