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