[][src]Enum lasm::asm::Literal

pub enum Literal {
    Character(char),
    Number(f64),
}

The Literal enum represents a literal in an assembly program (duh). A literal can either be a double precision float, or a character literal

Variants

Character(char)

A character literal

Number(f64)

A double precision float literal

Methods

impl Literal[src]

pub fn ch(ch: char) -> Self[src]

Create a character literal from a character

pub fn num(n: f64) -> Self[src]

Create a number literal from a double precision float

pub fn get(&self) -> f64[src]

Get the value of this literal as a double precision float

Trait Implementations

impl Clone for Literal[src]

impl Debug for Literal[src]

impl PartialEq<Literal> for Literal[src]

impl PartialOrd<Literal> for Literal[src]

impl StructuralPartialEq for Literal[src]

Auto Trait Implementations

impl RefUnwindSafe for Literal

impl Send for Literal

impl Sync for Literal

impl Unpin for Literal

impl UnwindSafe for Literal

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.