ohno 0.3.2

High-quality Rust error handling.
Documentation
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Demonstrates backtrace capture in errors.
//!
//! Run with `RUST_BACKTRACE=1` to see the full backtrace.

#![expect(clippy::unwrap_used, reason = "example code")]

use ohno::{AppError, app_err};

fn level3() -> Result<(), AppError> {
    Err(app_err!("error at deepest level"))
}

fn level2() -> Result<(), AppError> {
    level3()?;
    Ok(())
}

fn level1() -> Result<(), AppError> {
    level2()?;
    Ok(())
}

fn main() {
    let err = level1().unwrap_err();

    println!("Error: {err}\n");

    let backtrace = err.backtrace();
    if backtrace.status() == std::backtrace::BacktraceStatus::Captured {
        println!("Backtrace was successfully captured.");
        println!("Backtrace:\n{backtrace}");
    } else {
        println!("Backtrace was NOT captured. Set RUST_BACKTRACE=1 to see full backtrace details");
    }
}