use thiserror::Error; #[derive(Error, Debug)] pub enum ServerError { #[error("notmuch")] NotmuchError(#[from] notmuch::NotmuchError), #[error("flatten")] FlattenError, }