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]
impl<'t> Replacer for NoExpand<'t>[src]fn replace_append(&mut self, _: &Captures<'_>, dst: &mut String)[src]
fn replace_append(&mut self, _: &Captures<'_>, dst: &mut String)[src]Appends text to dst to replace the current match. Read more
fn no_expansion(&mut self) -> Option<Cow<'_, str>>[src]
fn no_expansion(&mut self) -> Option<Cow<'_, str>>[src]Return a fixed unchanging replacement string. Read more
fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>[src]
fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>[src]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
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more