RustBites: Introduction

Rust language, bites of Rust

Welcome to RustBites! These Bites are a thread of linked webpages that focus on the Rust programming language. You navigate using "Next" and "Prev" buttons on the top and bottom menus, or the pages button on the bottom right. Each Bite provides an introduction to, and discusses the ideas behind, some aspect of the language. The Pages button on the bottom menu, shows things we will be covering in this sequence.
Fig 1. Point Class Definition
Fig 2. Using Code
Fig 3. Output

Things to know about Rust:


  1. Rust is designed to support creation of user-defined value types that support construction and cloning of independent instance copies. Managed languages, like C# and Java, copy handles to instances on the heap, so an assignment in those languages results in two handles pointing to the same instance.
  2. The Rust language compiles to native code which runs directly in a new process. Code for managed languages run in a virtual machine hosted by a new process. That has consequences for both latency and throughput.
  3. Because of its clever type system design and strict static typing, Rust is relatively easy to use. However, for reasons of safety, its references are not allowed to share mutability. The result is that program builds fail repeatedly until all of the safety violations are removed. Compiler error messages are excellent, so fixing them isn't as difficult as it would otherwise be.

Figures 1, 2, and 3, on the right illustrate how Rust programs are structured. Figure 1. holds most of the code for a generic Point class definition. Figure 2. shows how using code can create instances of the class, and Figure 3. displays the output when that code runs. Click on image body to expand. Click on title bar to contract. Here is Point code online in the Rust Playground . Don't be concerned if these figures are hard to understand. We will be covering all of the details in subsequent Bites and in the Rust Story.

Rust Highs

  1. Memory and Data Race Safety
    Compiler enforced data ownership and reference rules insure Memory and Data Race safety.
  2. Performance
    Rust compiles to native code and does not need garbage collection, so it is as fast as C and C++. Here's a comparison.
  3. Error Handling
    Any function that can fail returns a result indicating success or failure. Code has to handle errors in well defined ways.
  4. Simple Value Behavior
    Rust supports value behavior without the need for program developers to define copy and move constructors, assignment operators, and destructors. Developers need only define a single clone operation that is called explicitly. The rest is handled by Rust's unique type system.
  5. Clever design of type system results in fewer context dependencies.
    I believe Rust code describes how its programs use platform resources more accurately than other popular languages.
  6. Rust programs tend to work correctly as soon as they compile.
    There are no memory bugs or data race conditions to find and fix.
  7. Very Effective Tool Chain
    The cargo tool creates, manages dependencies, builds, and executes programs and library tests.
  8. Fairly small syntax and library footprint with excellent documentation.
    Makes learning Rust relatively easy.

Rust Lows

  1. Safety restricts the way references can be used. That takes some getting used to. Building Rust code for the first time usually results in a sequence of reference violations that need to be fixed. The compiler has excellent error messages, so that isn't as difficult as it would be otherwise.
  2. Because of the static analysis of reference handling, compile times tend to be longer than for languages like C++.

Getting Started

References:

Reference Description
Jon Gjengset Considering Rust - why should you explore Rust?
RustTour.pdf Quick tour of the Rust programming language emphasizing its unique attributes.