pub struct GroupName {
pub start: Span,
pub name: Span,
pub end: Span,
}Expand description
Information about a group / capture name.
Fields§
§start: SpanSpan of the start marker, i.e., ?< or ?P<.
name: SpanSpan of the name.
end: SpanPosition of the end marker, i.e. >.
Trait Implementations§
impl Copy for GroupName
impl StructuralPartialEq for GroupName
Auto Trait Implementations§
impl Freeze for GroupName
impl RefUnwindSafe for GroupName
impl Send for GroupName
impl Sync for GroupName
impl Unpin for GroupName
impl UnwindSafe for GroupName
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