[−][src]Struct js_sys::Error
Methods
impl Error[src]
impl Errorpub fn new(message: &str) -> Error | [src] |
The Error constructor creates an error object. Instances of Error objects are thrown when runtime errors occur. The Error object can also be used as a base object for user-defined exceptions. See below for standard built-in error types.
impl Error[src]
impl Errorpub fn message(&self) -> JsString | [src] |
The message property is a human-readable description of the error.
impl Error[src]
impl Errorpub fn set_message(&self, message: &str) | [src] |
impl Error[src]
impl Errorpub fn name(&self) -> JsString | [src] |
The name property represents a name for the type of error. The initial value is "Error".
impl Error[src]
impl Errorimpl Error[src]
impl Errorpub fn to_string(&self) -> JsString | [src] |
The toString() method returns a string representing the specified Error object
Methods from Deref<Target = Object>
pub fn has_own_property(&self, property: &JsValue) -> bool | [src] |
The hasOwnProperty() method returns a boolean indicating whether the
object has the specified property as its own property (as opposed to
inheriting it).
pub fn is_prototype_of(&self, value: &JsValue) -> bool | [src] |
The isPrototypeOf() method checks if an object exists in another
object's prototype chain.
pub fn property_is_enumerable(&self, property: &JsValue) -> bool | [src] |
The propertyIsEnumerable() method returns a Boolean indicating
whether the specified property is enumerable.
pub fn to_locale_string(&self) -> JsString | [src] |
The toLocaleString() method returns a string representing the object.
This method is meant to be overridden by derived objects for
locale-specific purposes.
pub fn to_string(&self) -> JsString | [src] |
The toString() method returns a string representing the object.
pub fn value_of(&self) -> Object | [src] |
The valueOf() method returns the primitive value of the
specified object.
Trait Implementations
impl From<JsValue> for Error[src]
impl From<JsValue> for Errorimpl From<Error> for JsValue[src]
impl From<Error> for JsValueimpl From<Error> for Object[src]
impl From<Error> for Objectimpl From<EvalError> for Error[src]
impl From<EvalError> for Errorimpl From<RangeError> for Error[src]
impl From<RangeError> for Errorfn from(obj: RangeError) -> Error | [src] |
impl From<ReferenceError> for Error[src]
impl From<ReferenceError> for Errorfn from(obj: ReferenceError) -> Error | [src] |
impl From<SyntaxError> for Error[src]
impl From<SyntaxError> for Errorfn from(obj: SyntaxError) -> Error | [src] |
impl From<TypeError> for Error[src]
impl From<TypeError> for Errorimpl From<UriError> for Error[src]
impl From<UriError> for Errorimpl From<CompileError> for Error[src]
impl From<CompileError> for Errorfn from(obj: CompileError) -> Error | [src] |
impl From<LinkError> for Error[src]
impl From<LinkError> for Errorimpl From<RuntimeError> for Error[src]
impl From<RuntimeError> for Errorfn from(obj: RuntimeError) -> Error | [src] |
impl AsRef<JsValue> for Error[src]
impl AsRef<JsValue> for Errorimpl AsRef<Object> for Error[src]
impl AsRef<Object> for Errorimpl AsRef<Error> for EvalError[src]
impl AsRef<Error> for EvalErrorimpl AsRef<Error> for RangeError[src]
impl AsRef<Error> for RangeErrorimpl AsRef<Error> for ReferenceError[src]
impl AsRef<Error> for ReferenceErrorimpl AsRef<Error> for SyntaxError[src]
impl AsRef<Error> for SyntaxErrorimpl AsRef<Error> for TypeError[src]
impl AsRef<Error> for TypeErrorimpl AsRef<Error> for UriError[src]
impl AsRef<Error> for UriErrorimpl AsRef<Error> for CompileError[src]
impl AsRef<Error> for CompileErrorimpl AsRef<Error> for LinkError[src]
impl AsRef<Error> for LinkErrorimpl AsRef<Error> for RuntimeError[src]
impl AsRef<Error> for RuntimeErrorimpl Clone for Error[src]
impl Clone for Errorfn clone(&self) -> Error | [src] |
fn clone_from(&mut self, source: &Self) | 1.0.0 [src] |
Performs copy-assignment from source. Read more
impl Debug for Error[src]
impl Debug for Errorimpl Deref for Error[src]
impl Deref for Errorimpl FromWasmAbi for Error[src]
impl FromWasmAbi for Errortype Abi = <JsValue as FromWasmAbi>::Abi
The wasm ABI type that this converts from when coming back out from the ABI boundary. Read more
unsafe fn from_abi(js: Self::Abi, extra: &mut dyn Stack) -> Self | [src] |
impl IntoWasmAbi for Error[src]
impl IntoWasmAbi for Errortype Abi = <JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self, extra: &mut dyn Stack) -> Self::Abi | [src] |
impl<'a> IntoWasmAbi for &'a Error[src]
impl<'a> IntoWasmAbi for &'a Errortype Abi = <&'a JsValue as IntoWasmAbi>::Abi
The wasm ABI type that this converts into when crossing the ABI boundary. Read more
fn into_abi(self, extra: &mut dyn Stack) -> Self::Abi | [src] |
impl WasmDescribe for Error[src]
impl WasmDescribe for Errorimpl OptionIntoWasmAbi for Error[src]
impl OptionIntoWasmAbi for Errorimpl<'a> OptionIntoWasmAbi for &'a Error[src]
impl<'a> OptionIntoWasmAbi for &'a Errorimpl RefFromWasmAbi for Error[src]
impl RefFromWasmAbi for Errortype Abi = <JsValue as RefFromWasmAbi>::Abi
The wasm ABI type references to Self are recovered from.
type Anchor = ManuallyDrop<Error>
The type that holds the reference to Self for the duration of the invocation of the function that has an &Self parameter. This is required to ensure that the lifetimes don't persist beyond one function call, and so that they remain anonymous. Read more
unsafe fn ref_from_abi(js: Self::Abi, extra: &mut dyn Stack) -> Self::Anchor | [src] |
impl OptionFromWasmAbi for Error[src]
impl OptionFromWasmAbi for Errorimpl JsCast for Error[src]
impl JsCast for Errorfn instanceof(val: &JsValue) -> bool | [src] |
fn unchecked_from_js(val: JsValue) -> Self | [src] |
fn unchecked_from_js_ref(val: &JsValue) -> &Self | [src] |
fn is_instance_of<T>(&self) -> bool where | [src] |
Test whether this JS value is an instance of the type T. Read more
fn dyn_into<T>(self) -> Result<T, Self> where | [src] |
Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
fn dyn_ref<T>(&self) -> Option<&T> where | [src] |
Performs a dynamic cast (checked at runtime) of this value into the target type T. Read more
fn unchecked_into<T>(self) -> T where | [src] |
Performs a zero-cost unchecked cast into the specified type. Read more
fn unchecked_ref<T>(&self) -> &T where | [src] |
Performs a zero-cost unchecked cast into a reference to the specified type. Read more
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error> | [src] |
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId | [src] |
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi, [src]
impl<T> ReturnWasmAbi for T where
T: IntoWasmAbi, type Abi = <T as IntoWasmAbi>::Abi
Same as IntoWasmAbi::Abi
fn return_abi(self, extra: &mut dyn Stack) -> <T as ReturnWasmAbi>::Abi | [src] |