//! Error of rings_core
/// A wrap `Result` contains custom errors.
pub type Result<T> = Result;
/// Application callback error retained as the source of a core error.
///
/// Wasm callbacks may retain thread-local error values.
pub type CallbackError = ;
/// Application callback error retained as the source of a core error.
///
/// Since 0.18 native callbacks require `Send + Sync` because callback work is
/// driven by Tokio tasks. Prefer this alias in [`crate::swarm::callback::SwarmCallback`]
/// implementations instead of spelling the trait object directly.
pub type CallbackError = ;
pub use Error;