mirror of https://github.com/sgoudham/neovide.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1005 B
Rust
38 lines
1005 B
Rust
use log::error;
|
|
|
|
fn show_error(explanation: &str) -> ! {
|
|
error!("{}", explanation);
|
|
panic!("{}", explanation.to_string());
|
|
}
|
|
|
|
pub trait ResultPanicExplanation<T, E: ToString> {
|
|
fn unwrap_or_explained_panic(self, explanation: &str) -> T;
|
|
}
|
|
|
|
impl<T, E: ToString> ResultPanicExplanation<T, E> for Result<T, E> {
|
|
fn unwrap_or_explained_panic(self, explanation: &str) -> T {
|
|
match self {
|
|
Err(error) => {
|
|
let explanation = format!("{}: {}", explanation, error.to_string());
|
|
show_error(&explanation);
|
|
}
|
|
Ok(content) => content,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub trait OptionPanicExplanation<T> {
|
|
fn unwrap_or_explained_panic(self, explanation: &str) -> T;
|
|
}
|
|
|
|
impl<T> OptionPanicExplanation<T> for Option<T> {
|
|
fn unwrap_or_explained_panic(self, explanation: &str) -> T {
|
|
match self {
|
|
None => {
|
|
show_error(explanation);
|
|
}
|
|
Some(content) => content,
|
|
}
|
|
}
|
|
}
|