Rust

Programación de sistemas memory-safe - abstracciones de costo cero con garantías en compilación, sin garbage collector

TL;DR

En resumen: Rust te da el rendimiento de C++ con seguridad de memoria garantizada en tiempo de compilación.

Fortalezas principales:

  • Sin garbage collector, sin fugas de memoria
  • Sin punteros nulos, sin data races
  • Abstracciones de costo cero - paga solo por lo que usas
  • Excelentes mensajes de error del compilador

Philosophy

El principio central de Rust es la concurrencia sin miedo:

  • Ownership - Cada valor tiene exactamente un propietario. Cuando el propietario sale del scope, el valor se libera.
  • Borrowing - Las referencias permiten acceso temporal sin tomar posesión
  • Lifetimes - El compilador rastrea cuánto tiempo son válidas las referencias
  • Sin null - Usa Option<T> en su lugar. Te obliga a manejar el caso “sin valor”.

El compilador es estricto pero útil. Si compila, (generalmente) funciona.

Quick Start

Install

# macOS/Linux
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source $HOME/.cargo/env

Verify (stable: 1.85.0, Edition 2024)

rustc --version  # rustc 1.85.0
cargo --version

First Program

cargo new hello
cd hello
cargo run

Esto crea y ejecuta:

// src/main.rs
fn main() {
    println!("Hello, world!");
}

Language Essentials

Variables & Types

// Immutable by default
let name = "Alice";    // &str (string slice)
let age = 25;          // i32
let height = 1.75;     // f64
let active = true;     // bool

// Mutable
let mut count = 0;
count += 1;

// Explicit types
let items: Vec<i32> = vec![1, 2, 3];
let data: HashMap<String, i32> = HashMap::new();

Control Flow

// if-else (it's an expression!)
let status = if age >= 18 { "adult" } else { "minor" };

// match (exhaustive pattern matching)
match age {
    0..=12 => println!("Child"),
    13..=19 => println!("Teen"),
    _ => println!("Adult"),
}

// for loop
for item in items.iter() {
    println!("{}", item);
}

for i in 0..5 {  // 0, 1, 2, 3, 4
    println!("{}", i);
}

Functions

fn greet(name: &str) -> String {
    format!("Hello, {}!", name)  // no semicolon = return value
}

// With error handling
fn divide(a: i32, b: i32) -> Result<i32, String> {
    if b == 0 {
        Err("Division by zero".to_string())
    } else {
        Ok(a / b)
    }
}

Error Handling

// Result<T, E> for recoverable errors
let result = divide(10, 2);
match result {
    Ok(value) => println!("Result: {}", value),
    Err(e) => println!("Error: {}", e),
}

// ? operator for propagation
fn read_file() -> Result<String, io::Error> {
    let content = fs::read_to_string("file.txt")?;
    Ok(content)
}

// Option<T> for optional values
let first = items.first();  // Option<&i32>
if let Some(value) = first {
    println!("First: {}", value);
}

Ownership & Borrowing

// Ownership moves
let s1 = String::from("hello");
let s2 = s1;  // s1 is moved to s2
// println!("{}", s1);  // Error: s1 no longer valid

// Borrowing with references
let s1 = String::from("hello");
let len = calculate_length(&s1);  // borrow s1
println!("{} has length {}", s1, len);  // s1 still valid

fn calculate_length(s: &String) -> usize {
    s.len()
}

Gotchas

Movimiento de propiedad

let s1 = String::from("hello");
let s2 = s1;
// println!("{}", s1);  // Error! s1 moved

// Fix: clone or use reference
let s2 = s1.clone();  // or
let s2 = &s1;

Las referencias mutables son exclusivas

let mut s = String::from("hello");
let r1 = &mut s;
// let r2 = &mut s;  // Error: can't have two mutable refs
r1.push_str(" world");

String vs &str

let owned: String = String::from("owned");  // heap, mutable
let slice: &str = "borrowed";               // stack/static, immutable

Los iteradores son perezosos

// This does nothing
items.iter().map(|x| x * 2);

// Need to collect or consume
let doubled: Vec<_> = items.iter().map(|x| x * 2).collect();

When to Choose

Ideal para:

  • Programación de sistemas (OS, drivers, embebido)
  • WebAssembly
  • Herramientas CLI (ripgrep, fd, bat)
  • Servicios críticos en rendimiento

No ideal para:

  • Prototipos rápidos (usar Python, Go)
  • Apps web simples (curva de aprendizaje muy pronunciada)
  • Equipos nuevos en programación de sistemas

Comparación:

AspectoRustC++Go
MemoriaSeguroNo seguroGC
VelocidadMás rápidoMás rápidoRápido
AprendizajeDifícilMás difícilFácil
CompilaciónLentoLentoRápido

Next Steps

Ecosystem

Package Manager (Cargo)

cargo new project     # Create project
cargo build           # Compile
cargo run             # Build and run
cargo test            # Run tests
cargo add serde       # Add dependency
  • Web: Actix-web, Axum, Rocket
  • Async: Tokio, async-std
  • Serialization: serde
  • CLI: clap, structopt