Struct USentenceBoundIndices

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

External iterator for sentence boundaries and byte offsets.

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

Trait Implementations

impl<'a> Clone for USentenceBoundIndices<'a>

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

impl<'a> Debug for USentenceBoundIndices<'a>

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

impl<'a> Iterator for USentenceBoundIndices<'a>

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

Auto Trait Implementations

impl<'a> Freeze for USentenceBoundIndices<'a>

impl<'a> RefUnwindSafe for USentenceBoundIndices<'a>

impl<'a> Send for USentenceBoundIndices<'a>

impl<'a> Sync for USentenceBoundIndices<'a>

impl<'a> Unpin for USentenceBoundIndices<'a>

impl<'a> UnsafeUnpin for USentenceBoundIndices<'a>

impl<'a> UnwindSafe for USentenceBoundIndices<'a>

Blanket Implementations

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

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

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

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

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

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

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for USentenceBoundIndices<'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 USentenceBoundIndices<'a> where U: Into<T>,

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

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

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