pub enum ValidationWarningKind {
MixedScriptString(String),
BidiCharsInString(String),
BidiCharsInIdentifier(String),
MixedScriptIdentifier(String),
ConfusableIdentifier(String),
}
Variants§
MixedScriptString(String)
BidiCharsInString(String)
BidiCharsInIdentifier(String)
MixedScriptIdentifier(String)
ConfusableIdentifier(String)
Trait Implementations§
source§impl Clone for ValidationWarningKind
impl Clone for ValidationWarningKind
source§fn clone(&self) -> ValidationWarningKind
fn clone(&self) -> ValidationWarningKind
Returns a copy 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 ValidationWarningKind
impl Debug for ValidationWarningKind
source§impl Display for ValidationWarningKind
impl Display for ValidationWarningKind
source§impl PartialEq<ValidationWarningKind> for ValidationWarningKind
impl PartialEq<ValidationWarningKind> for ValidationWarningKind
source§fn eq(&self, other: &ValidationWarningKind) -> bool
fn eq(&self, other: &ValidationWarningKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ValidationWarningKind
Auto Trait Implementations§
impl RefUnwindSafe for ValidationWarningKind
impl Send for ValidationWarningKind
impl Sync for ValidationWarningKind
impl Unpin for ValidationWarningKind
impl UnwindSafe for ValidationWarningKind
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