rust_ipfs/error.rs
1//! Crate-wide errors.
2//!
3//! The error handling in `ipfs` is subject to change in the future.
4
5/// Just re-export anyhow for now.
6///
7/// # Stability
8///
9/// Very likely to change in the future.
10pub use anyhow::Error;
11
12/// A try conversion failed.
13///
14/// # Stability
15///
16/// Very likely to change in the future.
17pub struct TryError;