Skip to main content

DatumCharClass

Enum DatumCharClass 

Source
pub enum DatumCharClass {
    Content,
    Whitespace,
    Newline,
    LineComment,
    String,
    ListStart,
    ListEnd,
    SpecialID,
    Sign,
    Digit,
}
Expand description

Datum character class.

Variants§

§

Content

Escaped characters, anything else

§

Whitespace

32 and 9

§

Newline

10

§

LineComment

‘;’

§

String

‘“’

§

ListStart

‘(’

§

ListEnd

‘)’

§

SpecialID

‘#’

§

Sign

‘-’

§

Digit

‘0’ - ‘9’

Implementations§

Source§

impl DatumCharClass

Source

pub const fn potential_identifier(&self) -> bool

If this character class is a potential identifier. Note that this can be accessed via DatumChar via DatumChar::deref.

use datum::DatumChar;
assert!(DatumChar::identify('a').expect("not backslash").potential_identifier());
Source

pub const fn numeric_start(&self) -> bool

If this character class starts a number. Note that this can be accessed via DatumChar via DatumChar::deref.

use datum::DatumChar;
assert!(DatumChar::identify('0').expect("not backslash").numeric_start());
Source

pub const fn identify(v: char) -> Option<Self>

Identifies a character. Meta-class characters return None.

Trait Implementations§

Source§

impl Clone for DatumCharClass

Source§

fn clone(&self) -> DatumCharClass

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for DatumCharClass

Source§

impl Debug for DatumCharClass

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for DatumCharClass

Source§

impl PartialEq for DatumCharClass

Source§

fn eq(&self, other: &DatumCharClass) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for DatumCharClass

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.