[][src]Struct deno_core::Modules

pub struct Modules { /* fields omitted */ }

A collection of JS modules.

Implementations

impl Modules[src]

pub fn new() -> Modules[src]

pub fn get_id(&self, name: &str) -> Option<ModuleId>[src]

pub fn get_children(&self, id: ModuleId) -> Option<&Vec<ModuleSpecifier>>[src]

pub fn get_name(&self, id: ModuleId) -> Option<&String>[src]

pub fn is_registered(&self, specifier: &ModuleSpecifier) -> bool[src]

pub fn register(
    &mut self,
    id: ModuleId,
    name: &str,
    main: bool,
    handle: Global<Module>,
    import_specifiers: Vec<ModuleSpecifier>
)
[src]

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

pub fn is_alias(&self, name: &str) -> bool[src]

pub fn get_info(&self, id: ModuleId) -> Option<&ModuleInfo>[src]

pub fn deps(&self, module_specifier: &ModuleSpecifier) -> Option<Deps>[src]

Trait Implementations

impl Default for Modules[src]

Auto Trait Implementations

impl !RefUnwindSafe for Modules

impl !Send for Modules

impl !Sync for Modules

impl Unpin for Modules

impl !UnwindSafe for Modules

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[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.