[−][src]Enum lasm::asm::Literal
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]
fn partial_cmp(&self, other: &Literal) -> Option<Ordering>
[src]
fn lt(&self, other: &Literal) -> bool
[src]
fn le(&self, other: &Literal) -> bool
[src]
fn gt(&self, other: &Literal) -> bool
[src]
fn ge(&self, other: &Literal) -> bool
[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,