Home
last modified time | relevance | path

Searched refs:ErrorInner (Results 1 – 1 of 1) sorted by relevance

/wasmtime-44.0.1/cranelift/srcgen/src/
H A Derror.rs10 inner: Box<ErrorInner>,
17 inner: Box::new(ErrorInner::Msg(msg.into())), in with_msg()
33 inner: Box::new(ErrorInner::IoError(e)), in from()
39 enum ErrorInner { enum
44 impl fmt::Display for ErrorInner { implementation
47 ErrorInner::Msg(ref s) => write!(f, "{s}"), in fmt()
48 ErrorInner::IoError(ref e) => write!(f, "{e}"), in fmt()