Enum asexp::atom::Atom [] [src]

pub enum Atom {
    Str(String),
    UInt(u64),
    SInt(i64),
    Float(f64),
}

Variants

Trait Implementations

impl Debug for Atom
[src]

Formats the value using the given formatter.

impl PartialEq for Atom
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Atom
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl From<String> for Atom
[src]

Performs the conversion.

impl<'a> From<&'a str> for Atom
[src]

Performs the conversion.

impl From<usize> for Atom
[src]

Performs the conversion.

impl From<u64> for Atom
[src]

Performs the conversion.

impl From<u32> for Atom
[src]

Performs the conversion.

impl From<u16> for Atom
[src]

Performs the conversion.

impl From<u8> for Atom
[src]

Performs the conversion.

impl From<isize> for Atom
[src]

Performs the conversion.

impl From<i64> for Atom
[src]

Performs the conversion.

impl From<i32> for Atom
[src]

Performs the conversion.

impl From<i16> for Atom
[src]

Performs the conversion.

impl From<i8> for Atom
[src]

Performs the conversion.

impl From<f64> for Atom
[src]

Performs the conversion.

impl From<f32> for Atom
[src]

Performs the conversion.

impl Display for Atom
[src]

Formats the value using the given formatter. Read more