(&self, f: &mut fmt::Formatter)
| 184 | |
| 185 | impl fmt::Display for WasmTy { |
| 186 | fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> { |
| 187 | match self { |
| 188 | WasmTy::ByteBuffer => write!(f, "ByteBuffer"), |
| 189 | WasmTy::ByteArray => write!(f, "byte[]"), |
| 190 | WasmTy::String => write!(f, "String"), |
| 191 | WasmTy::ValType(val) => val.fmt(f), |
| 192 | } |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | pub(crate) enum WasmVal<'j> { |
nothing calls this directly
no outgoing calls
no test coverage detected