Enum regex_syntax::ast::HexLiteralKind  
source · pub enum HexLiteralKind {
    X,
    UnicodeShort,
    UnicodeLong,
}Expand description
The type of a Unicode hex literal.
Note that all variants behave the same when used with brackets. They only differ when used without brackets in the number of hex digits that must follow.
Variants§
X
A \x prefix. When used without brackets, this form is limited to
two digits.
UnicodeShort
A \u prefix. When used without brackets, this form is limited to
four digits.
UnicodeLong
A \U prefix. When used without brackets, this form is limited to
eight digits.
Implementations§
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for HexLiteralKind
 
impl<'arbitrary> Arbitrary<'arbitrary> for HexLiteralKind
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
 
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of 
Self from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
 
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of 
Self from the entirety of the given
unstructured data. Read moresource§impl Clone for HexLiteralKind
 
impl Clone for HexLiteralKind
source§fn clone(&self) -> HexLiteralKind
 
fn clone(&self) -> HexLiteralKind
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 HexLiteralKind
 
impl Debug for HexLiteralKind
source§impl PartialEq for HexLiteralKind
 
impl PartialEq for HexLiteralKind
source§fn eq(&self, other: &HexLiteralKind) -> bool
 
fn eq(&self, other: &HexLiteralKind) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for HexLiteralKind
impl StructuralEq for HexLiteralKind
impl StructuralPartialEq for HexLiteralKind
Auto Trait Implementations§
impl RefUnwindSafe for HexLiteralKind
impl Send for HexLiteralKind
impl Sync for HexLiteralKind
impl Unpin for HexLiteralKind
impl UnwindSafe for HexLiteralKind
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