1 2 3 4 5 6
use std::{ error::Error, result, }; pub(crate) type Result<T> = result::Result<T, Box<dyn Error>>;