pub type RspResult = Result<(), RspError>;
pub enum RspResult { Ok(()), Err(RspError), }
Contains the success value
Contains the error value