[][src]Struct low_level_virtual_machine::module::Module

pub struct Module<'ctx> { /* fields omitted */ }

Implementations

impl<'ctx> Module<'ctx>[src]

pub fn new(name: &str) -> Module<'_>[src]

pub fn with_context(name: &str, context: &'ctx Context) -> Module<'ctx>[src]

pub fn name(&self) -> Cow<'_, str>[src]

pub fn source_file_name(&self) -> Cow<'_, str>[src]

pub fn set_name(&mut self, name: &str)[src]

pub fn set_source_file_name(&mut self, source_file_name: &str)[src]

Trait Implementations

impl<'ctx> Clone for Module<'ctx>[src]

impl<'_> Debug for Module<'_>[src]

impl<'_> Drop for Module<'_>[src]

Auto Trait Implementations

impl<'ctx> RefUnwindSafe for Module<'ctx>

impl<'ctx> !Send for Module<'ctx>

impl<'ctx> !Sync for Module<'ctx>

impl<'ctx> Unpin for Module<'ctx>

impl<'ctx> UnwindSafe for Module<'ctx>

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.