[][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.

Implementations

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.

pub fn get_name(&self) -> Option<&str>[src]

Get the underlying name.

Trait Implementations

impl Clone for UnitName[src]

impl Debug for UnitName[src]

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

impl Display for UnitName[src]

impl Eq for UnitName[src]

impl Hash for UnitName[src]

impl PartialEq<UnitName> for UnitName[src]

impl Serialize for UnitName[src]

impl StructuralEq for UnitName[src]

impl StructuralPartialEq for UnitName[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> 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.