Struct UWordBounds

pub struct UWordBounds<'a> { /* private fields */ }

External iterator for a string's word boundaries.

This struct is created by the split_word_bounds method on the UnicodeSegmentation trait. See its documentation for more.

Implementations

impl<'a> UWordBounds<'a>

fn as_str(&self) -> &'a str

View the underlying data (the part yet to be iterated) as a slice of the original string.

# use unicode_segmentation::UnicodeSegmentation;
let mut iter = "Hello world".split_word_bounds();
assert_eq!(iter.as_str(), "Hello world");
iter.next();
assert_eq!(iter.as_str(), " world");
iter.next();
assert_eq!(iter.as_str(), "world");

Trait Implementations

impl<'a> Clone for UWordBounds<'a>

fn clone(&self) -> UWordBounds<'a>

impl<'a> Debug for UWordBounds<'a>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'a> DoubleEndedIterator for UWordBounds<'a>

fn next_back(&mut self) -> Option<&'a str>

impl<'a> Iterator for UWordBounds<'a>

type Item = &'a str;
fn size_hint(&self) -> (usize, Option<usize>)
fn next(&mut self) -> Option<&'a str>

Auto Trait Implementations

impl<'a> Freeze for UWordBounds<'a>

impl<'a> RefUnwindSafe for UWordBounds<'a>

impl<'a> Send for UWordBounds<'a>

impl<'a> Sync for UWordBounds<'a>

impl<'a> Unpin for UWordBounds<'a>

impl<'a> UnsafeUnpin for UWordBounds<'a>

impl<'a> UnwindSafe for UWordBounds<'a>

Blanket Implementations

impl<I> IntoIterator for UWordBounds<'a> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<T> Any for UWordBounds<'a> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for UWordBounds<'a> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for UWordBounds<'a> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for UWordBounds<'a> where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for UWordBounds<'a>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for UWordBounds<'a> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for UWordBounds<'a> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for UWordBounds<'a> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>