use snafu::Snafu; #[derive(Debug, Snafu)] pub enum Error { #[snafu(display("attempted to pop an empty stack"))] EmptyStack, } pub type Result = std::result::Result;