Rust

From Wikiversity
Jump to navigation Jump to search

Rust is a programming language that runs fast, prevents segfaults, and guarantees thread safety.[1]

Features[edit | edit source]

  • zero-cost abstractions
  • move semantics
  • guaranteed memory safety
  • threads without data races
  • trait-based generics
  • pattern matching
  • type inference
  • minimal runtime
  • efficient C bindings
  • No garbage collector
  • runs on bare metal
  • ownerships and borrows

Prerequisites[edit | edit source]

  • Basic knowledge of computer science
  • Basic knowledge on any programming language
  • A computer with a Rust-enabled IDE (VisualRust, intellij-rust, etc.)
  • Understanding of static types

Lessons[edit | edit source]

Resources[edit | edit source]

Open-Source

Online tutors Online learning sites

Online content instructor Bold textOnline Code Environment

Online Community

Good Programming Patterns

Exploring Rust[edit | edit source]

Tasks[edit | edit source]

See also[edit | edit source]

  • cargo (Rust)

References[edit | edit source]

  1. https://www.rust-lang.org/en-US/