pub struct Alphanumeric(/* private fields */);
Expand description
Represents Unicode characters with General_Category = Nd | Nl | No
.
This is equivalent to Alphabetic = true or Numeric = true
.
The value is true
for characters that are alphabetic or have a numeric General_Category,
false
otherwise.
Implementations§
Trait Implementations§
Source§impl BinaryCharProperty for Alphanumeric
impl BinaryCharProperty for Alphanumeric
Source§fn human_name(&self) -> &'static str
fn human_name(&self) -> &'static str
The human-readable name of the property value.
Source§impl CharProperty for Alphanumeric
impl CharProperty for Alphanumeric
Source§fn prop_abbr_name() -> &'static str
fn prop_abbr_name() -> &'static str
The abbreviated name of the property.
Source§fn prop_long_name() -> &'static str
fn prop_long_name() -> &'static str
The long name of the property.
Source§fn prop_human_name() -> &'static str
fn prop_human_name() -> &'static str
The human-readable name of the property.
Source§impl Clone for Alphanumeric
impl Clone for Alphanumeric
Source§fn clone(&self) -> Alphanumeric
fn clone(&self) -> Alphanumeric
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 Alphanumeric
impl Debug for Alphanumeric
Source§impl Default for Alphanumeric
impl Default for Alphanumeric
Source§fn default() -> Alphanumeric
fn default() -> Alphanumeric
Returns the “default value” for a type. Read more
Source§impl Display for Alphanumeric
impl Display for Alphanumeric
Source§impl From<Alphanumeric> for bool
impl From<Alphanumeric> for bool
Source§fn from(prop: Alphanumeric) -> bool
fn from(prop: Alphanumeric) -> bool
Converts to this type from the input type.
Source§impl FromStr for Alphanumeric
impl FromStr for Alphanumeric
Source§impl Hash for Alphanumeric
impl Hash for Alphanumeric
Source§impl PartialEq for Alphanumeric
impl PartialEq for Alphanumeric
Source§impl TotalCharProperty for Alphanumeric
impl TotalCharProperty for Alphanumeric
impl Copy for Alphanumeric
impl Eq for Alphanumeric
impl StructuralPartialEq for Alphanumeric
Auto Trait Implementations§
impl Freeze for Alphanumeric
impl RefUnwindSafe for Alphanumeric
impl Send for Alphanumeric
impl Sync for Alphanumeric
impl Unpin for Alphanumeric
impl UnwindSafe for Alphanumeric
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)