Struct CharIter
struct CharIter { ... }
An iterator over a range of unicode code points.
Constructed via CharRange::iter. See CharRange for more information.
Implementations
impl Clone for CharIter
fn clone(self: &Self) -> CharIter
impl Debug for CharIter
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl DoubleEndedIterator for CharIter
fn next_back(self: &mut Self) -> Option<<Self as >::Item>
impl ExactSizeIterator for CharIter
fn len(self: &Self) -> usize
impl Freeze for CharIter
impl From for CharIter
fn from(range: CharRange) -> CharIter
impl FusedIterator for CharIter
impl Iterator for CharIter
fn next(self: &mut Self) -> Option<char>fn size_hint(self: &Self) -> (usize, Option<usize>)fn last(self: Self) -> Option<char>fn max(self: Self) -> Option<char>fn min(self: Self) -> Option<char>
impl RefUnwindSafe for CharIter
impl Send for CharIter
impl Sync for CharIter
impl Unpin for CharIter
impl UnsafeUnpin for CharIter
impl UnwindSafe for CharIter
impl<I> IntoIterator for CharIter
fn into_iter(self: Self) -> I
impl<T> Any for CharIter
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for CharIter
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for CharIter
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for CharIter
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for CharIter
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for CharIter
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 CharIter
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for CharIter
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>