pub struct DfaMatch {
pub start: usize,
pub end: usize,
}Expand description
Result of a DFA match.
Fields§
§start: usizeStart position (byte index).
end: usizeEnd position (byte index).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DfaMatch
impl RefUnwindSafe for DfaMatch
impl Send for DfaMatch
impl Sync for DfaMatch
impl Unpin for DfaMatch
impl UnsafeUnpin for DfaMatch
impl UnwindSafe for DfaMatch
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