[][src]Struct regex::bytes::NoExpand

pub struct NoExpand<'t>(pub &'t [u8]);

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

impl<'t> Replacer for NoExpand<'t>[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> Send for NoExpand<'t>

impl<'t> Sync for NoExpand<'t>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.