enum Ref<'a> {
    Named(&'a str),
    Number(usize),
}Expand description
A reference to a capture group in some text.
e.g., $2, $foo, ${foo}.
Variants§
Trait Implementations§
impl<'a> Copy for Ref<'a>
impl<'a> Eq for Ref<'a>
impl<'a> StructuralPartialEq for Ref<'a>
Auto Trait Implementations§
impl<'a> Freeze for Ref<'a>
impl<'a> RefUnwindSafe for Ref<'a>
impl<'a> Send for Ref<'a>
impl<'a> Sync for Ref<'a>
impl<'a> Unpin for Ref<'a>
impl<'a> UnwindSafe for Ref<'a>
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