Book Image

Rust Quick Start Guide

By : Daniel Arbuckle
Book Image

Rust Quick Start Guide

By: Daniel Arbuckle

Overview of this book

Rust is an emerging programming language applicable to areas such as embedded programming, network programming, system programming, and web development. This book will take you from the basics of Rust to a point where your code compiles and does what you intend it to do! This book starts with an introduction to Rust and how to get set for programming, including the rustup and cargo tools for managing a Rust installation and development work?ow. Then you'll learn about the fundamentals of structuring a Rust program, such as functions, mutability, data structures, implementing behavior for types, and many more. You will also learn about concepts that Rust handles differently from most other languages. After understanding the Basics of Rust programming, you will learn about the core ideas, such as variable ownership, scope, lifetime, and borrowing. After these key ideas, you will explore making decisions in Rust based on data types by learning about match and if let expressions. After that, you'll work with different data types in Rust, and learn about memory management and smart pointers.
Table of Contents (10 chapters)

Using match to choose one of several patterns

You might have noticed in our previous example that we did not handle the case where the function returned an error value. In part, that's because handling that situation with if let is a little bit awkward. We could do this:

if let Ok(x) = might_fail(39) {
println!("Odd succeeded, name is {}", x.name);
}
else if let Err(x) = might_fail(39) {
println!("Odd failed, message is '{}'", x);
}

But that runs the function twice when it doesn't have to, so it's inefficient. We could fix that by doing this:

let result = might_fail(39);
if let Ok(x) = result {
println!("Odd succeeded, name is {}", x.name);
}
else if let Err(x) = result {
println!("Odd failed, message is '{}'", x);
}

That's better, but variables are for storing information and we don't really...