#error #error-derive #macro #utility #macro-derive

error-utils-derive

一些用于简化常见错误处理模式的 Rust proc-macros

4 个版本

0.1.3 2022年7月25日
0.1.2 2022年7月24日
0.1.1 2022年7月24日
0.1.0 2022年7月24日

#16 in #error-derive


2 crate 中使用

MIT 许可证

15KB
208 代码行

pipeline status Latest Release

rust-error-utils

一些 Rust 宏的集合,用于简化常见错误处理模式。

  1. 用法
    1. handle_err
    2. fail
    3. Errors Derive 宏
  2. 许可证

用法

添加到 Cargo.toml

[dependencies.error-utils]
git = "https://gitlab.com/robert-oleynik/rust-error-utils.git"

handle_err

use error_utils::handle_err;
use std::path::Path;

fn read_file<P: AsRef<Path>>(path: P) -> std::io::Result<()> {
	let content = handle_err!(std::fs::read_string(path), err => {
		eprintln!("{}", err);
		return Err(err);
	})
	// ...
}

查看 文档

fail

std::process::exit 的缩写

fail!();
// or
fail!(10);

查看 文档

Errors Derive 宏

此宏需要 derive 功能。(默认启用)

注意: 此示例使用了 toml crate。

use std::path::Path;

use error_utils::Errors;

#[derive(Debug, Errors)]
enum ConfigError {
	#[error("Failed to read config file (Reason: {})", from)]
	Io(std::io::Error),
	#[error("Failed to parse config file (Reason: {})", from)]
	Toml(toml::de::Error)
}

fn read_config<P: AsRef<Path>>(path: P) -> Result<toml::Value, ConfigError> {
	let content = std::fs::read_to_string(path)?;
	Ok(toml::from_str(&content)?)
}

查看 文档

许可证

本项目采用 MIT 许可证。查看 LICENSE

依赖项

~1.5MB
~35K SLoC