[−][src]Struct deno_core::Modules 
A collection of JS modules.
Methods
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<String>>[src]
pub fn get_children2(&self, name: &str) -> Option<&Vec<String>>[src]
pub fn get_name(&self, id: ModuleId) -> Option<&String>[src]
pub fn is_registered(&self, name: &str) -> bool[src]
pub fn register(
    &mut self, 
    id: ModuleId, 
    name: &str, 
    main: bool, 
    handle: Global<Module>, 
    import_specifiers: Vec<String>
)[src]
&mut self,
id: ModuleId,
name: &str,
main: bool,
handle: Global<Module>,
import_specifiers: Vec<String>
)
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 cache_specifier(
    &mut self, 
    specifier: &str, 
    referrer: &str, 
    resolved_specifier: &ModuleSpecifier
)[src]
&mut self,
specifier: &str,
referrer: &str,
resolved_specifier: &ModuleSpecifier
)
pub fn get_cached_specifier(
    &self, 
    specifier: &str, 
    referrer: &str
) -> Option<&ModuleSpecifier>[src]
&self,
specifier: &str,
referrer: &str
) -> Option<&ModuleSpecifier>
pub fn deps(&self, url: &str) -> Option<Deps>[src]
Trait Implementations
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Downcast for T where
    T: Any, [src]
T: Any,
fn into_any(self: Box<T>) -> Box<dyn Any + 'static>[src]
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>[src]
fn as_any(&self) -> &(dyn Any + 'static)[src]
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,