pub type Result<T> = Result<T, Error>;👎Deprecated since 0.17.0:
use the module-scoped error types (e.g. tle::Error) and define a downstream error enum, or use anyhow/color_eyre
Expand description
Convenient type alias used throughout satkit.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}