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