pub enum NfcQc {
Yes,
No,
Maybe,
}Expand description
UAX #15 NFC_Quick_Check property values.
Variants§
Yes
Input is unambiguously already NFC. No normalization needed.
No
Input is definitely not NFC.
Maybe
Input may or may not be NFC. A full normalization pass is required to decide and to produce the NFC form.
Trait Implementations§
impl Copy for NfcQc
impl Eq for NfcQc
impl StructuralPartialEq for NfcQc
Auto Trait Implementations§
impl Freeze for NfcQc
impl RefUnwindSafe for NfcQc
impl Send for NfcQc
impl Sync for NfcQc
impl Unpin for NfcQc
impl UnsafeUnpin for NfcQc
impl UnwindSafe for NfcQc
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