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 Freeze for ImportModule
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)