[][src]Struct falcon::il::Scalar

pub struct Scalar { /* fields omitted */ }

A Scalar is a variable which holds a single value.

Methods

impl Scalar[src]

A scalar value for Falcon IL.

pub fn new<S>(name: S, bits: usize) -> Scalar where
    S: Into<String>, 
[src]

Create a new Scalar with the given name and bitness.

pub fn temp(index: u64, bits: usize) -> Self[src]

Create a temporary Scalar with the given index and bitness.

pub fn bits(&self) -> usize[src]

Gets the bitness of the Scalar.

pub fn name(&self) -> &str[src]

Gets the name of the Scalar.

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

pub fn set_ssa(&mut self, ssa: Option<usize>)[src]

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

An identifier for the Scalar. This is the string which is displayed when printing the IL.

Trait Implementations

impl Clone for Scalar[src]

impl Debug for Scalar[src]

impl<'de> Deserialize<'de> for Scalar[src]

impl Display for Scalar[src]

impl Eq for Scalar[src]

impl Hash for Scalar[src]

impl Into<Expression> for Scalar[src]

impl Ord for Scalar[src]

impl PartialEq<Scalar> for Scalar[src]

impl PartialOrd<Scalar> for Scalar[src]

impl Serialize for Scalar[src]

impl StructuralEq for Scalar[src]

impl StructuralPartialEq for Scalar[src]

Auto Trait Implementations

impl RefUnwindSafe for Scalar

impl Send for Scalar

impl Sync for Scalar

impl Unpin for Scalar

impl UnwindSafe for Scalar

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> ToString for T where
    T: Display + ?Sized
[src]

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.