mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-23 11:05:01 +01:00
33 lines
798 B
Rust
33 lines
798 B
Rust
use serde::{Serialize, Serializer};
|
|
use thiserror::Error;
|
|
use wasm_bindgen::JsValue;
|
|
|
|
#[derive(Error, Debug, PartialEq)]
|
|
pub enum Error {
|
|
#[error("Render Error: {0}")]
|
|
RenderError(String),
|
|
|
|
#[error("Render Error: Variable \"{0}\" is not defined in active environment")]
|
|
VariableNotFound(String),
|
|
|
|
#[error("Render Error: Max recursion depth exceeded")]
|
|
RenderStackExceededError,
|
|
}
|
|
|
|
impl Serialize for Error {
|
|
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
serializer.serialize_str(self.to_string().as_ref())
|
|
}
|
|
}
|
|
|
|
impl Into<JsValue> for Error {
|
|
fn into(self) -> JsValue {
|
|
serde_wasm_bindgen::to_value(&self).unwrap()
|
|
}
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|