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