Struct e_utils::system::regex::ReplacerRef
source · pub struct ReplacerRef<'a, R>(/* private fields */)
where
R: ?Sized;Expand description
A by-reference adaptor for a Replacer.
This permits reusing the same Replacer value in multiple calls to a
replacement routine like Regex::replace_all.
This type is created by Replacer::by_ref.
Trait Implementations§
source§impl<'a, R> Debug for ReplacerRef<'a, R>
impl<'a, R> Debug for ReplacerRef<'a, R>
source§impl<'a, R> Replacer for ReplacerRef<'a, R>
impl<'a, R> Replacer for ReplacerRef<'a, R>
source§fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String)
fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut String)
Appends possibly empty data to
dst to replace the current match. Read moresource§fn no_expansion(&mut self) -> Option<Cow<'_, str>>
fn no_expansion(&mut self) -> Option<Cow<'_, str>>
Return a fixed unchanging replacement string. Read more
source§fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>
fn by_ref<'r>(&'r mut self) -> ReplacerRef<'r, Self>
Auto Trait Implementations§
impl<'a, R> Freeze for ReplacerRef<'a, R>where
R: ?Sized,
impl<'a, R> RefUnwindSafe for ReplacerRef<'a, R>where
R: RefUnwindSafe + ?Sized,
impl<'a, R> Send for ReplacerRef<'a, R>
impl<'a, R> Sync for ReplacerRef<'a, R>
impl<'a, R> Unpin for ReplacerRef<'a, R>where
R: ?Sized,
impl<'a, R> !UnwindSafe for ReplacerRef<'a, R>
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more