Struct regex::bytes::NoExpand [−][src]
NoExpand indicates literal byte string replacement.
It can be used with replace and replace_all to do a literal byte 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]
impl<'t> Replacer for NoExpand<'t>fn replace_append(&mut self, _: &Captures, dst: &mut Vec<u8>)[src]
fn replace_append(&mut self, _: &Captures, dst: &mut Vec<u8>)Appends text to dst to replace the current match. Read more
fn no_expansion(&mut self) -> Option<Cow<[u8]>>[src]
fn no_expansion(&mut self) -> Option<Cow<[u8]>>Return a fixed unchanging replacement byte string. Read more
fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>[src]
fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>Return a Replacer that borrows and wraps this Replacer. Read more