[][src]Struct llir::Context

pub struct Context(_);

LLVM Context

let ctx = Context::create();

Implementations

impl Context[src]

pub fn create() -> Self[src]

Create a new context

pub fn load_module<'ctx, P>(&'ctx self, path: P) -> Result<Module<'ctx>, String> where
    P: AsRef<Path>, 
[src]

Load a module

let module = ctx.load_module(Path::new("tests/c_files/basic/example_1.bc"))?;

Trait Implementations

impl Debug for Context[src]

impl Drop for Context[src]

impl Eq for Context[src]

impl PartialEq<Context> for Context[src]

impl Send for Context[src]

impl StructuralEq for Context[src]

impl StructuralPartialEq for Context[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.