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> Clone for NoExpand<'t>[src]

impl<'t> Debug for NoExpand<'t>[src]

impl<'t> Replacer for NoExpand<'t>[src]

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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.