fix(interface-types) Remove #[allow(unused)].

This commit is contained in:
Ivan Enderlin
2020-02-20 15:16:35 +01:00
parent 10bcb3dc90
commit 0767560b79
2 changed files with 10 additions and 4 deletions

View File

@ -5,7 +5,7 @@ use crate::interpreter::Instruction;
use std::str;
/// Represents the types supported by WIT.
#[derive(PartialEq, Clone, Copy, Debug)]
#[derive(PartialEq, Clone, Debug)]
pub enum InterfaceType {
/// An integer.
Int,