Enum seax_util::cell::Atom [] [src]

pub enum Atom {
    UInt(u64),
    SInt(i64),
    Float(f64),
    Char(char),
}

SVM atom types.

A VM atom can be either an unsigned int, signed int, float, or char.

Variants

Unsigned integer atom (machine 64)

Signed integer atom (machine 64)

Floating point number atom (64-bits)

UTF-8 character atom

Trait Implementations

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 PartialOrd for Atom
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Copy for Atom
[src]

impl Clone for Atom
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Display for Atom
[src]

Formats the value using the given formatter. Read more

impl Debug for Atom
[src]

Formats the value using the given formatter.

impl Add for Atom
[src]

The resulting type after applying the + operator

The method for the + operator

impl Sub for Atom
[src]

The resulting type after applying the - operator

The method for the - operator

impl Div for Atom
[src]

The resulting type after applying the / operator

The method for the / operator

impl Mul for Atom
[src]

The resulting type after applying the * operator

The method for the * operator

impl Rem for Atom
[src]

The resulting type after applying the % operator

The method for the % operator

impl Encode for Atom
[src]

Encodes this object to a list of bytes.