Struct regex::ReplacerRef 
source · pub struct ReplacerRef<'a, R: ?Sized>(_);Expand description
By-reference adaptor for a Replacer
Returned by Replacer::by_ref.
Trait Implementations§
source§impl<'a, R: Replacer + ?Sized + 'a> Replacer for ReplacerRef<'a, R>
 
impl<'a, R: Replacer + ?Sized + 'a> Replacer for ReplacerRef<'a, R>
source§fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String)
 
fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String)
Appends text to 
dst to replace the current match. Read moresource§fn no_expansion(&mut self) -> Option<Cow<'_, str>>
 
fn no_expansion(&mut self) -> Option<Cow<'_, str>>
Return a fixed unchanging replacement string. Read more