Get information specifying how to pass one argument.
(&self, sig: Sig, idx: usize)
| 987 | |
| 988 | /// Get information specifying how to pass one argument. |
| 989 | pub fn get_arg(&self, sig: Sig, idx: usize) -> ABIArg { |
| 990 | self.args(sig)[idx].clone() |
| 991 | } |
| 992 | |
| 993 | /// Get this signature's ABI returns. |
| 994 | pub fn rets(&self, sig: Sig) -> &[ABIArg] { |