subwasmlib 0.13.2

a small lib used by the subwasm cli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::fmt;

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

#[derive(Debug, Clone)]
pub enum Error {
	// Generic,
}

impl fmt::Display for Error {
	fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
		write!(fmt, "{:?}", self)
	}
}