Expand description
Patterns that only match against byte slices
Structs§
Functions§
- alpha
- Returns a pattern that will match any ascii letter at the start of the input
- digit
- Returns a pattern that will match any ascii digit at the start of the input
- hex
- Returns a pattern that will match any hexadecimal character at the start of the input
- noneof
- Inverse of
oneof. - oneof
- Returns a pattern that will match any byte in
bytesat the start of the input - utf8
- Returns a byte pattern that will match the utf8 string slice
sat the start of the input.