Enum wasm_bindgen_backend::ast::ImportModule
source · pub enum ImportModule {
Named(String, Span),
RawNamed(String, Span),
Inline(usize, Span),
}
Expand description
The possible types of module to import from
Variants§
Named(String, Span)
Import from the named module, with relative paths interpreted
RawNamed(String, Span)
Import from the named module, without interpreting paths
Inline(usize, Span)
Import from an inline JS snippet
Trait Implementations§
source§impl Clone for ImportModule
impl Clone for ImportModule
source§fn clone(&self) -> ImportModule
fn clone(&self) -> ImportModule
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more