//! Defines the library result and error.
usethiserror::Error;/// The library result
pubtypeResult<V =()>=std::result::Result<V, Error>;/// The library error
#[derive(Debug, Eq, PartialEq, Error, Clone)]pubenumError{/// If the menu registered in the system tray is not found
#[error("not found menu id: {0}")]
NotFoundMenu(String),}