Enum leo_asg::const_value::ConstInt[][src]

pub enum ConstInt {
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    I128(i128),
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
    U128(u128),
}

Constant integer values in a program.

Variants

I8(i8)
I16(i16)
I32(i32)
I64(i64)
I128(i128)
U8(u8)
U16(u16)
U32(u32)
U64(u64)
U128(u128)

Implementations

impl ConstInt[src]

pub fn raw_value(&self) -> String[src]

pub fn value_negate(&self) -> Option<ConstInt>[src]

pub fn to_usize(&self) -> Option<usize>[src]

pub fn to_string(&self) -> String[src]

pub fn value_add(&self, other: &ConstInt) -> Option<ConstInt>[src]

pub fn value_sub(&self, other: &ConstInt) -> Option<ConstInt>[src]

pub fn value_mul(&self, other: &ConstInt) -> Option<ConstInt>[src]

pub fn value_div(&self, other: &ConstInt) -> Option<ConstInt>[src]

pub fn value_pow(&self, other: &ConstInt) -> Option<ConstInt>[src]

pub fn value_lt(&self, other: &ConstInt) -> Option<bool>[src]

pub fn value_le(&self, other: &ConstInt) -> Option<bool>[src]

pub fn value_gt(&self, other: &ConstInt) -> Option<bool>[src]

pub fn value_ge(&self, other: &ConstInt) -> Option<bool>[src]

pub fn get_int_type(&self) -> IntegerType[src]

pub fn get_type(&self) -> Type[src]

pub fn parse(
    int_type: &IntegerType,
    value: &str,
    span: &Span
) -> Result<ConstInt, AsgConvertError>
[src]

Trait Implementations

impl Clone for ConstInt[src]

impl Debug for ConstInt[src]

impl PartialEq<ConstInt> for ConstInt[src]

impl StructuralPartialEq for ConstInt[src]

Auto Trait Implementations

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> Instrument 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 = Infallible

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.