Struct EscapeDebug

struct EscapeDebug<'a> { ... }

The return type of str::escape_debug.

Implementations

impl<'a> Clone for EscapeDebug<'a>

fn clone(self: &Self) -> EscapeDebug<'a>

impl<'a> Debug for EscapeDebug<'a>

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

impl<'a> Display for EscapeDebug<'a>

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

impl<'a> Freeze for EscapeDebug<'a>

impl<'a> FusedIterator for EscapeDebug<'a>

impl<'a> Iterator for EscapeDebug<'a>

fn next(self: &mut Self) -> Option<char>
fn size_hint(self: &Self) -> (usize, Option<usize>)
fn try_fold<Acc, Fold, R>(self: &mut Self, init: Acc, fold: Fold) -> R
where
    Self: Sized,
    Fold: FnMut(Acc, <Self as >::Item) -> R,
    R: Try<Output = Acc>
fn fold<Acc, Fold>(self: Self, init: Acc, fold: Fold) -> Acc
where
    Fold: FnMut(Acc, <Self as >::Item) -> Acc

impl<'a> RefUnwindSafe for EscapeDebug<'a>

impl<'a> Send for EscapeDebug<'a>

impl<'a> Sync for EscapeDebug<'a>

impl<'a> Unpin for EscapeDebug<'a>

impl<'a> UnsafeUnpin for EscapeDebug<'a>

impl<'a> UnwindSafe for EscapeDebug<'a>

impl<I> IntoIterator for EscapeDebug<'a>

fn into_iter(self: Self) -> I

impl<T> Any for EscapeDebug<'a>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for EscapeDebug<'a>

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

impl<T> BorrowMut for EscapeDebug<'a>

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

impl<T> CloneToUninit for EscapeDebug<'a>

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

impl<T> From for EscapeDebug<'a>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into for EscapeDebug<'a>

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 EscapeDebug<'a>

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

impl<T, U> TryInto for EscapeDebug<'a>

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