Get Me a Job

We'll cover the following...

We’ve seen primitive types, like i32, bool, or str. We’ve seen structs, which let you create more complex types by combining other types. Now it’s time to introduce a third kind of type, enums. These let you create something that may be one of many different things. We’ll start with simple examples, then build up more sophisticated cases.

We’ve played around with ...