Struct regex::bytes::ReplacerRef
source · pub struct ReplacerRef<'a, R: ?Sized>(_);
Expand description
By-reference adaptor for a Replacer
Returned by Replacer::by_ref
.
Trait Implementations§
source§impl<'a, R: Replacer + ?Sized + 'a> Replacer for ReplacerRef<'a, R>
impl<'a, R: Replacer + ?Sized + 'a> Replacer for ReplacerRef<'a, R>
source§fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut Vec<u8>)
fn replace_append(&mut self, caps: &Captures<'_>, dst: &mut Vec<u8>)
Appends text to
dst
to replace the current match. Read moresource§fn no_expansion<'r>(&'r mut self) -> Option<Cow<'r, [u8]>>
fn no_expansion<'r>(&'r mut self) -> Option<Cow<'r, [u8]>>
Return a fixed unchanging replacement byte 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: ?Sized> RefUnwindSafe for ReplacerRef<'a, R>where R: RefUnwindSafe,
impl<'a, R: ?Sized> Send for ReplacerRef<'a, R>where R: Send,
impl<'a, R: ?Sized> Sync for ReplacerRef<'a, R>where R: Sync,
impl<'a, R: ?Sized> Unpin for ReplacerRef<'a, R>
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