| 1099 | /// A single zero-width assertion. |
| 1100 | #[derive(Clone, Debug, Eq, PartialEq)] |
| 1101 | pub struct Assertion { |
| 1102 | /// The span of this assertion. |
| 1103 | pub span: Span, |
| 1104 | /// The assertion kind, e.g., `\b` or `^`. |
| 1105 | pub kind: AssertionKind, |
| 1106 | } |
| 1107 | |
| 1108 | /// An assertion kind. |
| 1109 | #[derive(Clone, Debug, Eq, PartialEq)] |
no outgoing calls
no test coverage detected