Crate werror

source ·
Expand description

Basic exceptions handling mechanism.

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

Modules

  • Assertions.
  • Dependencies.
  • Alias for std::error::BasicError.
  • Exposed namespace of the module.
  • Exceptions handling mechanism for apps.
  • Exceptions handling mechanism for libs.
  • Shared with parent namespace of the module
  • Prelude to use essentials: use my_module::prelude::*.
  • Protected namespace of the module.

Macros

  • Macro asserts that two expressions are identical to each other. Unlike std::assert_eq it is removed from a release build.
  • Macro asserts that two expressions are identical to each other. Unlike std::assert_eq it is removed from a release build. Alias of debug_assert_id.
  • Macro asserts that two expressions are not identical to each other. Unlike std::assert_eq it is removed from a release build.
  • Macro asserts that two expressions are not identical to each other. Unlike std::assert_eq it is removed from a release build.
  • Macro to generate an error descriptor.
  • Macro to return an Err( error ) generating error descriptor.

Structs

  • baic implementation of generic BasicError

Traits

Type Aliases