rue-clvm 0.2.0

CLVM utilities for the Rue compiler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io;

use clvmr::reduction::EvalErr;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("Eval error: {0}")]
    Eval(#[from] EvalErr),

    #[error("Io error: {0}")]
    Io(#[from] io::Error),
}

pub type Result<T> = std::result::Result<T, Error>;