| 1 | use casper_wasmi::{FromValue, RuntimeArgs, Trap}; |
| 2 | |
| 3 | pub(crate) trait Args |
| 4 | where |
| 5 | Self: Sized, |
| 6 | { |
| 7 | fn parse(args: RuntimeArgs) -> Result<Self, Trap>; |
| 8 | } |
| 9 | |
| 10 | impl<T1> Args for (T1,) |
| 11 | where |
nothing calls this directly
no outgoing calls
no test coverage detected