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