[][src]Struct genco::lang::js::Import

pub struct Import { /* fields omitted */ }

An imported JavaScript item import {foo} from "module.js".

Created through the import() function.

Implementations

impl Import[src]

pub fn with_alias<N>(self, alias: N) -> Self where
    N: Into<ItemStr>, 
[src]

Change alias of imported item.

This implies that the import is a named import.

If this is set, you'll get an import like:

import {<name> as <alias>} from <module>

Examples

use genco::prelude::*;

let a = js::import("collections", "vec");
let b = js::import("collections", "vec").with_alias("list");

let toks = quote! {
    #a
    #b
};

assert_eq!(
    vec![
        "import {vec, vec as list} from \"collections\";",
        "",
        "vec",
        "list",
    ],
    toks.to_file_vec()?
);

pub fn into_default(self) -> Self[src]

Convert into a default import.

Examples

use genco::prelude::*;

let default_vec = js::import("collections", "defaultVec").into_default();

let toks = quote!(#default_vec);

assert_eq!(
    vec![
        "import defaultVec from \"collections\";",
        "",
        "defaultVec",
    ],
    toks.to_file_vec()?
);

pub fn into_wildcard(self) -> Self[src]

Convert into a wildcard import.

Examples

use genco::prelude::*;

let all = js::import("collections", "all").into_wildcard();

let toks = quote!(#all);

assert_eq!(
    vec![
        "import * as all from \"collections\";",
        "",
        "all",
    ],
    toks.to_file_vec()?
);

Trait Implementations

impl AsAny for Import[src]

impl Clone for Import[src]

impl Debug for Import[src]

impl Eq for Import[src]

impl FormatInto<JavaScript> for Import[src]

impl<'a> FormatInto<JavaScript> for &'a Import[src]

impl Hash for Import[src]

impl LangItem<JavaScript> for Import[src]

impl Ord for Import[src]

impl PartialEq<Import> for Import[src]

impl PartialOrd<Import> for Import[src]

impl Register<JavaScript> for Import[src]

impl<'a> Register<JavaScript> for &'a Import[src]

impl StructuralEq for Import[src]

impl StructuralPartialEq for Import[src]

Auto Trait Implementations

impl RefUnwindSafe for Import

impl Send for Import

impl Sync for Import

impl Unpin for Import

impl UnwindSafe for Import

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.