`ExecNoSyncStr` is like `ExecNoSync`, but matches on &str instead of &[u8].
| 58 | |
| 59 | /// `ExecNoSyncStr` is like `ExecNoSync`, but matches on &str instead of &[u8]. |
| 60 | pub struct ExecNoSyncStr<'c>(ExecNoSync<'c>); |
| 61 | |
| 62 | /// `ExecReadOnly` comprises all read only state for a regex. Namely, all such |
| 63 | /// state is determined at compile time and never changes during search. |