| 51 | } |
| 52 | |
| 53 | pub trait Replacer: Send + Sync { |
| 54 | fn name(&self) -> &str; |
| 55 | fn find<'a>(&'a self, content: &'a str, find: &'a str) |
| 56 | -> Box<dyn Iterator<Item = String> + 'a>; |
| 57 | } |
| 58 | |
| 59 | pub struct SimpleReplacer; |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected