1 2 3 4 5 6 7 8 9
use std::io; #[derive(Debug, thiserror::Error)] pub enum Error { #[error(transparent)] Fuels(#[from] fuels::types::errors::Error), #[error(transparent)] Io(#[from] io::Error), }