| 119 | } |
| 120 | |
| 121 | pub(crate) trait IntoAbi { |
| 122 | type Abi: Abi; |
| 123 | |
| 124 | fn into_abi(self) -> Self::Abi; |
| 125 | } |
| 126 | |
| 127 | pub(crate) trait FromAbi<A: Abi> { |
| 128 | unsafe fn from_abi(abi: A) -> Self; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…