pub enum TakeRange {
Found(usize),
NotFound(usize),
}
Variants§
Found(usize)
Found the pattern at this offset
NotFound(usize)
Did not find the pattern but the parser can skip ahead to this offset.
Trait Implementations§
impl StructuralPartialEq for TakeRange
Auto Trait Implementations§
impl Freeze for TakeRange
impl RefUnwindSafe for TakeRange
impl Send for TakeRange
impl Sync for TakeRange
impl Unpin for TakeRange
impl UnwindSafe for TakeRange
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