Struct swc_ecma_dep_graph::DependencyDescriptor[][src]

pub struct DependencyDescriptor {
    pub kind: DependencyKind,
    pub is_dynamic: bool,
    pub leading_comments: Vec<Comment>,
    pub line: usize,
    pub col: usize,
    pub specifier: JsWord,
    pub specifier_line: usize,
    pub specifier_col: usize,
    pub import_assertions: HashMap<String, String>,
}

Fields

kind: DependencyKindis_dynamic: bool

A flag indicating if the import is dynamic or not.

leading_comments: Vec<Comment>

Any leading comments associated with the dependency. This is used for further processing of supported pragma that impact the dependency.

line: usize

The location of the import/export statement.

col: usizespecifier: JsWord

The text specifier associated with the import/export statement.

specifier_line: usize

The location of the specifier.

specifier_col: usizeimport_assertions: HashMap<String, String>

Import assertions for this dependency. NOTE: it’s filled only for static imports and exports.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.