pub struct FMIndexMatch<'a, C: Character>(/* private fields */);Expand description
Match in the text for FMIndex.
Trait Implementations§
Source§impl<'a, C: Character> Match<'a, C> for FMIndexMatch<'a, C>
impl<'a, C: Character> Match<'a, C> for FMIndexMatch<'a, C>
Source§fn iter_chars_forward(&self) -> impl Iterator<Item = C> + 'a
fn iter_chars_forward(&self) -> impl Iterator<Item = C> + 'a
Iterate over the characters of the match.
Source§fn iter_chars_backward(&self) -> impl Iterator<Item = C> + 'a
fn iter_chars_backward(&self) -> impl Iterator<Item = C> + 'a
Iterate over the characters of the match in reverse.
Auto Trait Implementations§
impl<'a, C> Freeze for FMIndexMatch<'a, C>
impl<'a, C> RefUnwindSafe for FMIndexMatch<'a, C>where
C: RefUnwindSafe,
impl<'a, C> Send for FMIndexMatch<'a, C>where
C: Sync,
impl<'a, C> Sync for FMIndexMatch<'a, C>where
C: Sync,
impl<'a, C> Unpin for FMIndexMatch<'a, C>
impl<'a, C> UnwindSafe for FMIndexMatch<'a, C>where
C: RefUnwindSafe,
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