blob: 14f6819862b1ae37c7999056721c414a892a53c1 (
plain) (
tree)
|
|
use std::fmt::Display;
#[derive(Debug)]
pub struct Error {}
impl Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
writeln!(f, "error")
}
}
pub type EvalResult<T> = Result<T, Error>;
|