Struct ToTitlecase

struct ToTitlecase(_)

Returns an iterator that yields the titlecase equivalent of a char.

This struct is created by the to_titlecase method on char. See its documentation for more.

Implementations

impl Clone for ToTitlecase

fn clone(self: &Self) -> ToTitlecase

impl Debug for ToTitlecase

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

impl Display for ToTitlecase

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

impl DoubleEndedIterator for ToTitlecase

fn next_back(self: &mut Self) -> Option<char>
fn rfold<Acc, Fold>(self: Self, init: Acc, rfold: Fold) -> Acc
where
    Fold: FnMut(Acc, <Self as >::Item) -> Acc
fn advance_back_by(self: &mut Self, n: usize) -> Result<(), NonZero<usize>>

impl ExactSizeIterator for ToTitlecase

fn len(self: &Self) -> usize
fn is_empty(self: &Self) -> bool

impl Freeze for ToTitlecase

impl FusedIterator for ToTitlecase

impl Iterator for ToTitlecase

fn next(self: &mut Self) -> Option<char>
fn size_hint(self: &Self) -> (usize, Option<usize>)
fn fold<Acc, Fold>(self: Self, init: Acc, fold: Fold) -> Acc
where
    Fold: FnMut(Acc, <Self as >::Item) -> Acc
fn count(self: Self) -> usize
fn last(self: Self) -> Option<<Self as >::Item>
fn advance_by(self: &mut Self, n: usize) -> Result<(), NonZero<usize>>

impl RefUnwindSafe for ToTitlecase

impl Send for ToTitlecase

impl Sync for ToTitlecase

impl TrustedLen for ToTitlecase

impl Unpin for ToTitlecase

impl UnsafeUnpin for ToTitlecase

impl UnwindSafe for ToTitlecase

impl<I> IntoIterator for ToTitlecase

fn into_iter(self: Self) -> I

impl<T> Any for ToTitlecase

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for ToTitlecase

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for ToTitlecase

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

impl<T> CloneToUninit for ToTitlecase

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

impl<T> From for ToTitlecase

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for ToTitlecase

fn into(self: 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 for ToTitlecase

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for ToTitlecase

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