pub type Result<T> = Result<T, AstroError>;Expand description
Type alias for Results in this crate.
All fallible operations in astro-math return this Result type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(AstroError),
}pub type Result<T> = Result<T, AstroError>;Type alias for Results in this crate.
All fallible operations in astro-math return this Result type.
pub enum Result<T> {
Ok(T),
Err(AstroError),
}