9 unstable releases (3 breaking)

0.4.0 Oct 29, 2023
0.3.0 Oct 28, 2023
0.1.3 Jun 12, 2022
0.1.2 May 25, 2022
0.0.2 Dec 22, 2021

#18 in #exception

Download history 5/week @ 2024-01-08 29/week @ 2024-02-26 14/week @ 2024-03-04 33/week @ 2024-03-11 7/week @ 2024-03-18 43/week @ 2024-04-01 6/week @ 2024-04-08 5/week @ 2024-04-15

54 downloads per month

MIT license

23KB
251 lines

Module :: werror

experimental rust-status docs.rs discord

Basic exceptions handling mechanism.

Basic use-case.

fn main()
{
  let err = f1();
  println!( "{err:#?}" );
  // < Err(
  // <    BasicError {
  // <        msg: "Some error",
  // <    },
  // < )
}

fn f1() -> werror::Result< () >
{
  let _read = std::fs::read_to_string( "Cargo.toml" )?;
  Err( werror::BasicError::new( "Some error" ).into() )
}

To add to your project

cargo add werror

Try out from the repository

git clone https://github.com/Wandalen/wTools
cd wTools
cargo run --example werror_tools_trivial

Dependencies

~135KB