(input: I, error: ErrorKind, other: Self)
| 51 | } |
| 52 | |
| 53 | fn append(input: I, error: ErrorKind, other: Self) -> Self { |
| 54 | ErrorTree::append(input, error, other.0).into() |
| 55 | } |
| 56 | |
| 57 | fn from_char(input: I, c: char) -> Self { |
| 58 | ErrorTree::from_char(input, c).into() |