pub enum IsNormalized {
Yes,
No,
Maybe,
}Expand description
Result of a quick-check test.
Variants§
Yes
The string is definitely in the target normalization form.
No
The string is definitely not in the target normalization form.
Maybe
The string might not be normalized; a full check is required.
Trait Implementations§
Source§impl Clone for IsNormalized
impl Clone for IsNormalized
Source§fn clone(&self) -> IsNormalized
fn clone(&self) -> IsNormalized
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 IsNormalized
impl Debug for IsNormalized
Source§impl PartialEq for IsNormalized
impl PartialEq for IsNormalized
impl Copy for IsNormalized
impl Eq for IsNormalized
impl StructuralPartialEq for IsNormalized
Auto Trait Implementations§
impl Freeze for IsNormalized
impl RefUnwindSafe for IsNormalized
impl Send for IsNormalized
impl Sync for IsNormalized
impl Unpin for IsNormalized
impl UnsafeUnpin for IsNormalized
impl UnwindSafe for IsNormalized
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