Lines Matching refs:Exec
29 /// `Exec` manages the execution of a regular expression.
35 pub struct Exec {
49 /// `ExecNoSync` is like `Exec`, except it embeds a reference to a cache. This
299 pub fn build(self) -> Result<Exec, Error> {
314 return Ok(Exec { ro, pool });
355 Ok(Exec { ro, pool })
1260 impl Exec {
1316 impl Clone for Exec {
1317 fn clone(&self) -> Exec {
1319 Exec { ro: self.ro.clone(), pool }