(value: u64)
| 38 | |
| 39 | impl From<u64> for MessageData { |
| 40 | fn from (value: u64) -> Self { |
| 41 | MessageData::Value(value) |
| 42 | } |
| 43 | } |
| 44 | impl From<MemoryHandle> for MessageData { |
| 45 | fn from (handle: MemoryHandle) -> Self { |
nothing calls this directly
no test coverage detected