dipstick/src/core/error.rs

6 lines
140 B
Rust

use std::error;
use std::result;
/// Just put any error in a box.
pub type Result<T> = result::Result<T, Box<error::Error + Send + Sync>>;