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 moreAuto Trait Implementations§
impl RefUnwindSafe for ImportModule
impl !Send for ImportModule
impl !Sync for ImportModule
impl Unpin for ImportModule
impl UnwindSafe for ImportModule
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more