[][src]Struct souper_ir::ast::Id

pub struct Id<T> { /* fields omitted */ }

An identifier for an object allocated within an arena.

Implementations

impl<T> Id<T>[src]

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

Get the index within the arena that this id refers to.

Trait Implementations

impl<T> Clone for Id<T>[src]

impl<T> Copy for Id<T>[src]

impl<T> Debug for Id<T>[src]

impl<T> Eq for Id<T>[src]

impl From<BlockId> for Id<Statement>[src]

impl From<ValueId> for Id<Statement>[src]

impl<T> Hash for Id<T>[src]

impl<T> Ord for Id<T>[src]

impl<T> PartialEq<Id<T>> for Id<T>[src]

impl<T> PartialOrd<Id<T>> for Id<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Id<T>

impl<T> Send for Id<T>

impl<T> Sync for Id<T>

impl<T> Unpin for Id<T>

impl<T> UnwindSafe for Id<T>

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, 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.