[][src]Enum llhd::ir::UnitName

pub enum UnitName {
    Anonymous(u32),
    Local(String),
    Global(String),
}

A name of a function, process, or entity.

Variants

Anonymous(u32)

An anonymous name, like %42.

Local(String)

A local name, like %foo.

Global(String)

A global name, like @foo.

Methods

impl UnitName[src]

pub fn anonymous(id: u32) -> Self[src]

pub fn local(name: impl Into<String>) -> Self[src]

pub fn global(name: impl Into<String>) -> Self[src]

pub fn is_local(&self) -> bool[src]

Check whether this is a local name.

Local names can only be linked within the same module.

pub fn is_global(&self) -> bool[src]

Check whether this is a global name.

Global names may be referenced by other modules and are considered by the global linker.

Trait Implementations

impl PartialEq<UnitName> for UnitName[src]

impl Clone for UnitName[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for UnitName[src]

impl Display for UnitName[src]

impl Debug for UnitName[src]

impl Hash for UnitName[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for UnitName

impl Sync for UnitName

Blanket Implementations

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> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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