mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-25 13:39:06 +01:00
12 lines
277 B
Rust
12 lines
277 B
Rust
#[macro_export]
|
|
macro_rules! impl_into_napi_error {
|
|
($a:ty) => {
|
|
#[cfg(feature = "napi")]
|
|
impl Into<napi::Error> for $a {
|
|
fn into(self) -> napi::Error {
|
|
napi::Error::from_reason(self.to_string())
|
|
}
|
|
}
|
|
};
|
|
}
|