Struct regex::bytes::NoExpand [−][src]
Expand description
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
Auto Trait Implementations
impl<'t> RefUnwindSafe for NoExpand<'t>
impl<'t> UnwindSafe for NoExpand<'t>
Blanket Implementations
Mutably borrows from an owned value. Read more