HomeDisk/types/src/macros.rs

7 lines
178 B
Rust
Raw Normal View History

2022-04-19 19:10:36 +00:00
#[macro_export]
macro_rules! option_return {
($variable:expr,$err_desc:expr) => {
$variable.ok_or(std::io::Error::new(std::io::ErrorKind::Other, $err_desc))
2022-04-19 19:10:36 +00:00
};
}