pub struct DecomposedChar { /* private fields */ }Expand description
An array of codepoints, resulting from the decompose_char function.
Creating this value does not require allocation, since the maximum size is known ahead-of-time.
Implementations§
Trait Implementations§
Source§impl AsRef<[char]> for DecomposedChar
impl AsRef<[char]> for DecomposedChar
Source§impl Clone for DecomposedChar
impl Clone for DecomposedChar
Source§fn clone(&self) -> DecomposedChar
fn clone(&self) -> DecomposedChar
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecomposedChar
impl Debug for DecomposedChar
Source§impl<'a> IntoIterator for &'a DecomposedChar
impl<'a> IntoIterator for &'a DecomposedChar
Source§impl IntoIterator for DecomposedChar
impl IntoIterator for DecomposedChar
Auto Trait Implementations§
impl Freeze for DecomposedChar
impl RefUnwindSafe for DecomposedChar
impl Send for DecomposedChar
impl Sync for DecomposedChar
impl Unpin for DecomposedChar
impl UnwindSafe for DecomposedChar
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more