Panics

Rust handles fatal errors with a “panic”.

Rust activará un panic si se produce un error grave en runtime:

fn main() {
    let v = vec![10, 20, 30];
    println!("v[100]: {}", v[100]);
}
  • Los panics se usan para errores irrecuperables e inesperados.
    • Los panics son un síntoma de que hay fallos en el programa.
    • Runtime failures like failed bounds checks can panic
    • Assertions (such as assert!) panic on failure
    • Purpose-specific panics can use the panic! macro.
  • A panic will “unwind” the stack, dropping values just as if the functions had returned.
  • Utiliza API que no activen panics (como Vec::get) si no se admiten fallos.
This slide should take about 3 minutes.

De forma predeterminada, el panic hará que la stack se desenrolle. El proceso de desenrrollado se puede detectar:

use std::panic;

fn main() {
    let result = panic::catch_unwind(|| "No problem here!");
    println!("{result:?}");

    let result = panic::catch_unwind(|| {
        panic!("oh no!");
    });
    println!("{result:?}");
}
  • Catching is unusual; do not attempt to implement exceptions with catch_unwind!
  • Esto puede ser útil en los servidores que deben seguir ejecutándose aunque una sola solicitud falle.
  • No funciona si panic = 'abort' está definido en Cargo.toml.