#[repr(u32)]pub enum regex_charset {
REGEX_DEPENDS_CHARSET = 0,
REGEX_LOCALE_CHARSET = 1,
REGEX_UNICODE_CHARSET = 2,
REGEX_ASCII_RESTRICTED_CHARSET = 3,
REGEX_ASCII_MORE_RESTRICTED_CHARSET = 4,
}Variants§
REGEX_DEPENDS_CHARSET = 0
REGEX_LOCALE_CHARSET = 1
REGEX_UNICODE_CHARSET = 2
REGEX_ASCII_RESTRICTED_CHARSET = 3
REGEX_ASCII_MORE_RESTRICTED_CHARSET = 4
Trait Implementations§
Source§impl Clone for regex_charset
impl Clone for regex_charset
Source§fn clone(&self) -> regex_charset
fn clone(&self) -> regex_charset
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 moreSource§impl Debug for regex_charset
impl Debug for regex_charset
Source§impl Hash for regex_charset
impl Hash for regex_charset
Source§impl Ord for regex_charset
impl Ord for regex_charset
Source§fn cmp(&self, other: ®ex_charset) -> Ordering
fn cmp(&self, other: ®ex_charset) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for regex_charset
impl PartialEq for regex_charset
Source§fn eq(&self, other: ®ex_charset) -> bool
fn eq(&self, other: ®ex_charset) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for regex_charset
impl PartialOrd for regex_charset
impl Copy for regex_charset
impl Eq for regex_charset
impl StructuralPartialEq for regex_charset
Auto Trait Implementations§
impl Freeze for regex_charset
impl RefUnwindSafe for regex_charset
impl Send for regex_charset
impl Sync for regex_charset
impl Unpin for regex_charset
impl UnsafeUnpin for regex_charset
impl UnwindSafe for regex_charset
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