1 2 3 4 5 6 7 8 9
use thiserror::Error; #[derive(Error, Debug)] pub enum Error { #[error("Could not find symbol")] NotFound, #[error("Could not deserialize binary data")] Deserialize, }