pub enum SourceMapRef {
    Ref(String),
    LegacyRef(String),
}
Expand description

Represents a reference to a sourcemap

Variants§

§

Ref(String)

A regular URL reference

§

LegacyRef(String)

A legacy URL reference

Implementations§

Return the URL of the reference

Resolves the reference.

The given minified URL needs to be the URL of the minified file. The result is the fully resolved URL of where the source map can be located.

Resolves the reference against a local file path

This is similar to resolve but operates on file paths.

Load an embedded sourcemap if there is a data URL.

Trait Implementations§

Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

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
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.