interstice-abi 0.5.0

WASM ABI types and host-call interfaces for the Interstice runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Debug)]
pub enum IntersticeAbiError {
    ConversionError(String),
}

impl std::fmt::Display for IntersticeAbiError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            IntersticeAbiError::ConversionError(msg) => write!(f, "{}", msg),
        }
    }
}

impl std::error::Error for IntersticeAbiError {}