Struct regex::NoExpand
[−]
[src]
pub struct NoExpand<'t>(pub &'t str);
NoExpand indicates literal string replacement.
It can be used with replace
and replace_all
to do a literal string
replacement without expanding $name
to their corresponding capture
groups. This can be both convenient (to avoid escaping $
, for example)
and performant (since capture groups don't need to be found).
't
is the lifetime of the literal text.
Trait Implementations
impl<'t> Replacer for NoExpand<'t>
[src]
fn replace_append(&mut self, _: &Captures, dst: &mut String)
Appends text to dst
to replace the current match. Read more
fn no_expansion<'r>(&'r mut self) -> Option<Cow<'r, str>>
Return a fixed unchanging replacement string. Read more