[][src]Struct gluon::import::Import

pub struct Import<I = DefaultImporter> {
    pub paths: RwLock<Vec<PathBuf>>,
    pub loaders: RwLock<FnvMap<String, ExternLoader>>,
    pub importer: I,
    // some fields omitted
}

Macro which rewrites occurances of import! "filename" to a load of that file if it is not already loaded and then a global access to the loaded module

Fields

paths: RwLock<Vec<PathBuf>>loaders: RwLock<FnvMap<String, ExternLoader>>importer: I

Methods

impl<I> Import<I>[src]

pub fn new(importer: I) -> Import<I>[src]

Creates a new import macro

pub fn add_path<P: Into<PathBuf>>(&self, path: P)[src]

Adds a path to the list of paths which the importer uses to find files

pub fn set_paths(&self, paths: Vec<PathBuf>)[src]

pub fn add_loader(&self, module: &str, loader: ExternLoader)[src]

pub fn modules(&self) -> Vec<Cow<'static, str>>[src]

pub fn load_module(
    &self,
    compiler: &mut Compiler,
    vm: &Thread,
    macros: &mut MacroExpander,
    module_id: &Symbol,
    span: Span<BytePos>
) -> Result<Option<impl Future<Item = (), Error = ()>>, (Option<ArcType>, MacroError)> where
    I: Importer
[src]

Trait Implementations

impl<I> Macro for Import<I> where
    I: Importer
[src]

Auto Trait Implementations

impl<I> Send for Import<I> where
    I: Send

impl<I> Sync for Import<I> where
    I: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: Any

impl<D, T> FromPtr for T[src]

impl<F> Macro for F where
    F: Send + Sync + Clone + Any + Fn(&mut MacroExpander, Vec<Spanned<Expr<Symbol>, ByteIndex>>) -> Box<dyn Future<Item = Spanned<Expr<Symbol>, ByteIndex>, Error = Box<dyn Error + 'static + Sync + Send>> + 'static + Send>, 
[src]

impl<T> Any for T where
    T: Any

impl<Choices> CoproductSubsetter for Choices

type Remainder = Choices

impl<Source> Sculptor for Source

type Remainder = Source

impl<T, U, I> LiftInto for T where
    U: LiftFrom<T, I>,