pub enum ImportMapErrorKind {
UnmappedBareSpecifier(String, Option<String>),
JsonParse(Error),
ImportMapNotObject,
ImportsFieldNotObject,
ScopesFieldNotObject,
ScopePrefixNotObject(String),
BlockedByNullEntry(String),
SpecifierResolutionFailure {
specifier: String,
after_prefix: String,
resolution_result: Url,
specifier_key: String,
},
SpecifierBacktracksAbovePrefix {
specifier: String,
specifier_key: String,
},
}Variants§
UnmappedBareSpecifier(String, Option<String>)
JsonParse(Error)
ImportMapNotObject
ImportsFieldNotObject
ScopesFieldNotObject
ScopePrefixNotObject(String)
BlockedByNullEntry(String)
SpecifierResolutionFailure
SpecifierBacktracksAbovePrefix
Implementations§
Source§impl ImportMapErrorKind
impl ImportMapErrorKind
pub fn into_box(self) -> ImportMapError
Trait Implementations§
Source§impl Debug for ImportMapErrorKind
impl Debug for ImportMapErrorKind
Source§impl Display for ImportMapErrorKind
impl Display for ImportMapErrorKind
Source§impl Error for ImportMapErrorKind
impl Error for ImportMapErrorKind
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl JsErrorClass for ImportMapErrorKind
impl JsErrorClass for ImportMapErrorKind
Source§fn get_message(&self) -> Cow<'static, str>
fn get_message(&self) -> Cow<'static, str>
Represents the error message used in JavaScript side.
Source§fn get_additional_properties(&self) -> AdditionalProperties
fn get_additional_properties(&self) -> AdditionalProperties
Additional properties that should be defined on the error in JavaScript side.
fn get_ref(&self) -> &(dyn Error + Send + Sync + 'static)
Auto Trait Implementations§
impl Freeze for ImportMapErrorKind
impl !RefUnwindSafe for ImportMapErrorKind
impl Send for ImportMapErrorKind
impl Sync for ImportMapErrorKind
impl Unpin for ImportMapErrorKind
impl !UnwindSafe for ImportMapErrorKind
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