pub enum DecompKind {
Canonical,
Compatibility,
}Expand description
Mode flag for decompose_to_buffer.
Variants§
Canonical
Canonical decomposition (NFD / NFC source pass).
Compatibility
Compatibility decomposition (NFKD / NFKC source pass).
Trait Implementations§
Source§impl Clone for DecompKind
impl Clone for DecompKind
Source§fn clone(&self) -> DecompKind
fn clone(&self) -> DecompKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DecompKind
Source§impl Debug for DecompKind
impl Debug for DecompKind
impl Eq for DecompKind
Source§impl PartialEq for DecompKind
impl PartialEq for DecompKind
Source§fn eq(&self, other: &DecompKind) -> bool
fn eq(&self, other: &DecompKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecompKind
Auto Trait Implementations§
impl Freeze for DecompKind
impl RefUnwindSafe for DecompKind
impl Send for DecompKind
impl Sync for DecompKind
impl Unpin for DecompKind
impl UnsafeUnpin for DecompKind
impl UnwindSafe for DecompKind
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