1 2 3 4 5 6 7 8
#[derive(thiserror::Error, Debug)] pub enum Error { #[error("unsupported shell")] UnsupportedShell, #[error(transparent)] UnexpectedError(#[from] anyhow::Error), }