pub type HandlerResult = Result<Option<Value>, String>;
Result type for RPC handler responses.
pub enum HandlerResult { Ok(Option<Value>), Err(String), }
Contains the success value
Contains the error value