(&self)
| 177 | } |
| 178 | |
| 179 | fn primitive(&self) -> &'static str { |
| 180 | match self { |
| 181 | Self::S8 | Self::U8 | Self::S16 | Self::U16 | Self::I32 => "i32", |
| 182 | Self::I64 => "i64", |
| 183 | Self::F32 => "f32", |
| 184 | Self::F64 => "f64", |
| 185 | } |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | #[derive(Copy, Clone, PartialEq, Eq)] |
no outgoing calls
no test coverage detected