Skip to content

LeSnake04/miette_helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Miette Helper

A library providing helper macros for Miette as well as some general error-handling helper macros

I recommend to use it in conjuntion with unwrap or

Provided Functions

wrap_err

Converts given Result into Diagnostic and returns it. Made for applications not using a custom error enum/struct.

let a: Result<u32, std::io::Error> = Ok(42);
let b: u32 = wrap_err!(a, "Failed to calulate number")? + 27;

or_wrap_err

Converts given Option into Diagnostic with the given error message.

let b: Option<&str> = None;
let c: &str = or_wrap_err!(b, "No path specified")?

About

A simple crate providing helper macros for miette

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages