Struct EscapeUnicode
struct EscapeUnicode<'a> { ... }
The return type of str::escape_unicode.
Implementations
impl<'a> Clone for EscapeUnicode<'a>
fn clone(self: &Self) -> EscapeUnicode<'a>
impl<'a> Debug for EscapeUnicode<'a>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<'a> Display for EscapeUnicode<'a>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<'a> Freeze for EscapeUnicode<'a>
impl<'a> FusedIterator for EscapeUnicode<'a>
impl<'a> Iterator for EscapeUnicode<'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 EscapeUnicode<'a>
impl<'a> Send for EscapeUnicode<'a>
impl<'a> Sync for EscapeUnicode<'a>
impl<'a> Unpin for EscapeUnicode<'a>
impl<'a> UnsafeUnpin for EscapeUnicode<'a>
impl<'a> UnwindSafe for EscapeUnicode<'a>
impl<I> IntoIterator for EscapeUnicode<'a>
fn into_iter(self: Self) -> I
impl<T> Any for EscapeUnicode<'a>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for EscapeUnicode<'a>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for EscapeUnicode<'a>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for EscapeUnicode<'a>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for EscapeUnicode<'a>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for EscapeUnicode<'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 EscapeUnicode<'a>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for EscapeUnicode<'a>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>