Struct regex::bytes::NoExpand [−][src]
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> Clone for NoExpand<'t>
[src]
impl<'t> Debug for NoExpand<'t>
[src]
impl<'t> Replacer for NoExpand<'t>
[src]
fn replace_append(&mut self, _: &Captures<'_>, dst: &mut Vec<u8>)
[src]
fn no_expansion(&mut self) -> Option<Cow<'_, [u8]>>
[src]
fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>
[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,