Struct USentenceBounds
struct USentenceBounds<'a> { ... }
External iterator for a string's sentence boundaries.
This struct is created by the split_sentence_bounds method on the UnicodeSegmentation
trait. See its documentation for more.
Implementations
impl<'a> Clone for USentenceBounds<'a>
fn clone(self: &Self) -> USentenceBounds<'a>
impl<'a> Debug for USentenceBounds<'a>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<'a> Freeze for USentenceBounds<'a>
impl<'a> Iterator for USentenceBounds<'a>
fn size_hint(self: &Self) -> (usize, Option<usize>)fn next(self: &mut Self) -> Option<&'a str>
impl<'a> RefUnwindSafe for USentenceBounds<'a>
impl<'a> Send for USentenceBounds<'a>
impl<'a> Sync for USentenceBounds<'a>
impl<'a> Unpin for USentenceBounds<'a>
impl<'a> UnsafeUnpin for USentenceBounds<'a>
impl<'a> UnwindSafe for USentenceBounds<'a>
impl<I> IntoIterator for USentenceBounds<'a>
fn into_iter(self: Self) -> I
impl<T> Any for USentenceBounds<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for USentenceBounds<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for USentenceBounds<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for USentenceBounds<'a>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for USentenceBounds<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for USentenceBounds<'a>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for USentenceBounds<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for USentenceBounds<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>