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§
source§impl<'t> Replacer for NoExpand<'t>
impl<'t> Replacer for NoExpand<'t>
Auto Trait Implementations§
impl<'t> Freeze for NoExpand<'t>
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)