pub struct NoExpand<'t>(pub &'t str);
Expand description
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.
Tuple Fields
0: &'t str
Trait Implementations
sourceimpl<'t> Replacer for NoExpand<'t>
impl<'t> Replacer for NoExpand<'t>
sourcefn replace_append(&mut self, _: &Captures<'_>, dst: &mut String)
fn replace_append(&mut self, _: &Captures<'_>, dst: &mut String)
Appends text to dst
to replace the current match. Read more
sourcefn no_expansion(&mut self) -> Option<Cow<'_, str>>
fn no_expansion(&mut self) -> Option<Cow<'_, str>>
Return a fixed unchanging replacement string. Read more
sourcefn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>
fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>
Return a Replacer
that borrows and wraps this Replacer
. Read more
Auto Trait Implementations
impl<'t> RefUnwindSafe for NoExpand<'t>
impl<'t> Send for NoExpand<'t>
impl<'t> Sync for NoExpand<'t>
impl<'t> Unpin for NoExpand<'t>
impl<'t> UnwindSafe for NoExpand<'t>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more