enum WordsIter<'a> {
Ascii(Filter<Map<AsciiWordBoundIter<'a>, fn((usize, &'a str)) -> &'a str>, fn(&&'a str) -> bool>),
Unicode(Filter<UWordBounds<'a>, fn(&&'a str) -> bool>),
}Variants§
Ascii(Filter<Map<AsciiWordBoundIter<'a>, fn((usize, &'a str)) -> &'a str>, fn(&&'a str) -> bool>)
Unicode(Filter<UWordBounds<'a>, fn(&&'a str) -> bool>)
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for WordsIter<'a>
impl<'a> RefUnwindSafe for WordsIter<'a>
impl<'a> Send for WordsIter<'a>
impl<'a> Sync for WordsIter<'a>
impl<'a> Unpin for WordsIter<'a>
impl<'a> UnwindSafe for WordsIter<'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