1use std::io::Error; 2 3/// This crate's convenience type alias for [`Result`](std::result::Result)s 4pub type Result<T = (), E = Error> = std::result::Result<T, E>;