DEV Community

Cover image for A Simplified Explanation Of Enum & Struct IN Rust
Balogun Malik O
Balogun Malik O

Posted on

A Simplified Explanation Of Enum & Struct IN Rust

Rust is a modern programming language designed with the goal of providing fast, secure, and reliable software. In Rust, Enums and Structs are two powerful features that help developers organize code in a logical and easy-to-use way. Enums allow developers to define a set of named values, while Structs allow the creation of custom data structures that can be used to store various types of data. Understanding how to use Enums and Structs is essential for any Rust programmer. In this article, we will explore the basic concepts of Rust Enums and Structs and provide examples that demonstrate how to use them effectively in your Rust projects.

What is Rust Enum and Struct?

Rust is a popular systems programming language that provides a powerful and efficient approach to developing software. One of the language's fundamental building blocks is its support for Enum and Struct, two powerful constructs that allow developers to define their own data types.

Enums, an abbreviation for enumerations, allow you to define a type by listing its possible values, while Structs, an abbreviation for structures, allow you to group several related values into a single object. Both are incredibly useful for organizing and simplifying your code.

Why Use Rust Enum and Struct?

Enum and Struct allow you to create custom data types tailored to your application's specific needs. By defining your own types, you can make your code more expressive, easier to read, and less prone to bugs. Enums and Structs are incredibly versatile and can be used to represent everything from colors to network protocols.

By using Enum and Struct, you can also take advantage of Rust's strong type system. This means that the compiler can catch many errors at compile time before your code even runs. As a result, your code will be more reliable and easier to maintain.

Creating Enums and Structs in Rust

Creating Enums
To create an Enum in Rust, you use the "enum" keyword followed by the name of your Enum. You can then list the possible values for your Enum, each separated by a comma. Here's an example:

enum Color {

Red,

Green,

Blue,

}
Enter fullscreen mode Exit fullscreen mode

This defines a Color Enum with three possible values: Red, Green, and Blue.

Creating Structs
To create a Struct in Rust, you use the "struct" keyword followed by the name of your Struct. You can then define the properties of your Struct using the syntax "name: type". Here's an example:

struct Person {

name: String,

age: u32,

}
Enter fullscreen mode Exit fullscreen mode

This defines a Person Struct with two properties: name, which is a String, and age, which is an unsigned 32-bit integer.

Defining Properties for Enums and Structs

You can define properties for your Enums and Structs by using the syntax "name: type" when defining your Enum values or Struct properties. Here's an example:

enum Color {

Red(u8),

Green(u8),

Blue(u8),

}

struct Person {

name: String,

age: u32,

}

impl Person {

fn say_hello(&self) {

println!("Hello, my name is {} and I'm {} years old.", self.name, self.age);

}

}
Enter fullscreen mode Exit fullscreen mode

In this example, we have defined a new property for our Color Enum: each value now takes an additional u8 parameter. We have also defined a method for our Person Struct called "say_hello", which prints out a greeting.

For further clarity on defining Structs, you use the "impl" keyword followed by the name of your Struct. You can then define one or more functions that take "self" as a parameter. Here's an example:

struct Rectangle {

width: u32,

height: u32,

}

impl Rectangle {

fn area(&self) -> u32 {

self.width * self.height

}

}
Enter fullscreen mode Exit fullscreen mode

This defines a Rectangle Struct with two properties (width and height) and a method called "area" that calculates the area of the rectangle.

Pattern Matching with Rust Enums

Pattern matching is a powerful feature in Rust that allows you to match on the different values of an Enum and perform different actions depending on the value. It's a highly expressive and concise way to work with Enums.

To match enums in rust, the "match" keyword is used to perform pattern matching on Enums. Here's an example:

enum Color {

Red,

Green,

Blue,

}

fn print_color(color: Color) {

match color {

Color::Red => println!("The color is red!"),

Color::Green => println!("The color is green!"),

Color::Blue => println!("The color is blue!"),

}

}
Enter fullscreen mode Exit fullscreen mode

This function takes a Color Enum and prints out a message depending on the value. The "match" keyword is used to match on the different values of the Enum and execute the corresponding code block.

Using If Let to Work with Rust Enums

"If let" is another way to perform pattern matching on Enums in Rust. It's a more concise and readable way to match on single values. Here's an example:

enum Fruit {

Apple(String),

Banana(u32),

}

fn print_fruit(fruit: Fruit) {

if let Fruit::Apple(name) = fruit {

println!("This is an apple named {}.", name);

} else if let Fruit::Banana(count) = fruit {

println!("This is a banana with {} bananas in it.", count);

}

}
Enter fullscreen mode Exit fullscreen mode

This function takes a Fruit Enum and prints out a message depending on the value. The "if let" keyword is used to match on a single value and execute the corresponding code.

Conclusion

Use Rust enums when you have a fixed set of possible values for a variable. Use Rust structs when you need to define a new data type with multiple fields. Rust Enums allow the creation of a set of named values, while Rust Structs allow developers to create custom data structures, defining properties and methods, and store various types of data. Enums and Structs are often used together to create complex data structures in Rust.

Additionally, when defining Rust enums and structs, follow the Rust community's coding conventions, including using snake_case for variable and function names and using pub for public fields and methods. Also, consider using Rust's borrow checker to ensure that your code is memory-safe. In conclusion, Rust Enums and Structs provide a powerful way to organize code and create custom data structures in Rust. Mastering these concepts allows you to write more efficient code with fewer errors. We hope that this article has provided you with a solid foundation for working with Rust Enums and Structs. As you continue to develop your Rust skills, be sure to explore more advanced techniques and best practices to take your coding to the next level.

To learn more about Enum and Structs visit the official Rust documentation.

Top comments (0)