(&self)
| 20 | |
| 21 | impl TestCaseRegInfo { |
| 22 | pub fn get(&self) -> &GenericRegInfo { |
| 23 | match *self { |
| 24 | TestCaseRegInfo::Example { path: _, reginfo } => reginfo, |
| 25 | TestCaseRegInfo::Arbitrary { ref reginfo } => reginfo, |
| 26 | } |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | /// Common implementation of a test case used by all fuzz targets. |