Struct UnicodeSentences
struct UnicodeSentences<'a> { ... }
An iterator over the substrings of a string which, after splitting the string on sentence boundaries, contain any characters with the Alphabetic property, or with General_Category=Number.
This struct is created by the unicode_sentences method on the UnicodeSegmentation
trait. See its documentation for more.
Implementations
impl<'a> Clone for UnicodeSentences<'a>
fn clone(self: &Self) -> UnicodeSentences<'a>
impl<'a> Debug for UnicodeSentences<'a>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<'a> Freeze for UnicodeSentences<'a>
impl<'a> Iterator for UnicodeSentences<'a>
fn next(self: &mut Self) -> Option<&'a str>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<'a> RefUnwindSafe for UnicodeSentences<'a>
impl<'a> Send for UnicodeSentences<'a>
impl<'a> Sync for UnicodeSentences<'a>
impl<'a> Unpin for UnicodeSentences<'a>
impl<'a> UnsafeUnpin for UnicodeSentences<'a>
impl<'a> UnwindSafe for UnicodeSentences<'a>
impl<I> IntoIterator for UnicodeSentences<'a>
fn into_iter(self: Self) -> I
impl<T> Any for UnicodeSentences<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for UnicodeSentences<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for UnicodeSentences<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for UnicodeSentences<'a>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for UnicodeSentences<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for UnicodeSentences<'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 UnicodeSentences<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for UnicodeSentences<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>