| 288 | /// Typed primitive value; composites (list, dict, set, instances) go through `Handle::call`. |
| 289 | #[derive(Debug, Clone)] |
| 290 | pub enum Value { |
| 291 | None, |
| 292 | Bool(bool), |
| 293 | Int(i128), |
| 294 | Float(f64), |
| 295 | /// UTF-8 transit; the host materialises a `str`. |
| 296 | Bytes(Vec<u8>), |
| 297 | /// Opaque bytes transit; the host materialises a `bytes`. |
| 298 | Raw(Vec<u8>), |
| 299 | } |
| 300 | |
| 301 | /* FromValue / IntoValue */ |
| 302 |
no outgoing calls
no test coverage detected