(&mut self, caps: &Captures, dst: &mut String)
| 1164 | |
| 1165 | impl<'a, R: Replacer + ?Sized + 'a> Replacer for ReplacerRef<'a, R> { |
| 1166 | fn replace_append(&mut self, caps: &Captures, dst: &mut String) { |
| 1167 | self.0.replace_append(caps, dst) |
| 1168 | } |
| 1169 | fn no_expansion(&mut self) -> Option<Cow<str>> { |
| 1170 | self.0.no_expansion() |
| 1171 | } |