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

pub struct Import<I = DefaultImporter> {
    pub paths: RwLock<Vec<PathBuf>>,
    pub importer: I,
    pub compiler: Mutex<CompilerDatabase>,
}

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>>importer: Icompiler: Mutex<CompilerDatabase>

Implementations

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 modules(&self, compiler: &mut ModuleCompiler) -> Vec<Cow<'static, str>>[src]

pub fn database_mut(self: Arc<Self>, thread: RootedThread) -> DatabaseMut where
    I: Importer
[src]

pub fn snapshot(&self, thread: RootedThread) -> DatabaseSnapshot[src]

pub fn fork(
    &self,
    forker: ForkState<CompilerDatabase>,
    thread: RootedThread
) -> DatabaseFork
[src]

Trait Implementations

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

impl<I> Trace for Import<I>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<'_, T> Captures<'_> for T[src]

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices

type Remainder = Choices

impl<T> Downcast for T where
    T: Any

impl<T> DowncastArc for T where
    T: Downcast + Send + Sync
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

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

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

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

impl<Source> Sculptor<HNil, HNil> for Source

type Remainder = Source

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,