mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 18:40:58 +01:00
28 lines
979 B
Rust
28 lines
979 B
Rust
use mlua::prelude::*;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Debug, Clone, Error)]
|
|
pub enum DocumentError {
|
|
#[error("Unknown document kind")]
|
|
UnknownKind,
|
|
#[error("Unknown document format")]
|
|
UnknownFormat,
|
|
#[error("Failed to read document from buffer")]
|
|
ReadError(String),
|
|
#[error("Failed to write document to buffer")]
|
|
WriteError(String),
|
|
#[error("Failed to convert into a DataModel - the given document is not a place")]
|
|
IntoDataModelInvalidArgs,
|
|
#[error("Failed to convert into array of Instances - the given document is a model")]
|
|
IntoInstanceArrayInvalidArgs,
|
|
#[error("Failed to convert into a place - the given instance is not a DataModel")]
|
|
FromDataModelInvalidArgs,
|
|
#[error("Failed to convert into a model - a given instance is a DataModel")]
|
|
FromInstanceArrayInvalidArgs,
|
|
}
|
|
|
|
impl From<DocumentError> for LuaError {
|
|
fn from(value: DocumentError) -> Self {
|
|
Self::RuntimeError(value.to_string())
|
|
}
|
|
}
|