[][src]Struct llhd::ModuleContext

pub struct ModuleContext<'tctx> { /* fields omitted */ }

Methods

impl<'tctx> ModuleContext<'tctx>
[src]

pub fn new(module: &Module) -> ModuleContext
[src]

pub fn function(&self, func: FunctionRef) -> &Function
[src]

pub fn process(&self, prok: ProcessRef) -> &Process
[src]

pub fn entity(&self, entity: EntityRef) -> &Entity
[src]

Trait Implementations

impl<'tctx> Context for ModuleContext<'tctx>
[src]

fn parent(&self) -> Option<&dyn Context>
[src]

Get the parent context to which value resolution shall escalate. May return None for the context at the top of the hierarchy. Read more

fn value(&self, value: &ValueRef) -> &dyn Value
[src]

Resolve a ValueRef to an actual &Value reference. Panics if the value is unknown to this context and its parents. Read more

fn ty(&self, value: &ValueRef) -> Type
[src]

Get the type of a value.

fn name(&self, value: &ValueRef) -> Option<&str>
[src]

Get the name of a value.

Auto Trait Implementations

impl<'tctx> Send for ModuleContext<'tctx>

impl<'tctx> Sync for ModuleContext<'tctx>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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