pub type Result<T> = Result<T, Error>;
👎Deprecated: use
stac
instead of stac-async
, which is deprecated and will receive no further updatesExpand description
Crate-specific result type.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}