Struct napi::Error

source ·
pub struct Error<S: AsRef<str> = Status> {
    pub status: S,
    pub reason: String,
    /* private fields */
}
Expand description

Represent JsError. Return this Error in js_function, napi-rs will throw it as JsError for you. If you want throw it as TypeError or RangeError, you can use JsTypeError/JsRangeError::from(Error).throw_into(env)

Fields§

§status: S§reason: String

Implementations§

source§

impl<S: AsRef<str>> Error<S>

source

pub fn new<R: ToString>(status: S, reason: R) -> Self

source

pub fn from_status(status: S) -> Self

source§

impl Error

source

pub fn from_reason<T: Into<String>>(reason: T) -> Self

Trait Implementations§

source§

impl<S: Clone + AsRef<str>> Clone for Error<S>

source§

fn clone(&self) -> Error<S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<S: Debug + AsRef<str>> Debug for Error<S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: AsRef<str> + Debug> Display for Error<S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<S: AsRef<str>> Drop for Error<S>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Used when a Serialize implementation encounters any error while serializing a type. Read more
source§

impl<S: AsRef<str> + Debug> Error for Error<S>

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more
source§

impl Error for Error

source§

fn custom<T: Display>(msg: T) -> Self

Raised when there is general error when deserializing a type. Read more
source§

fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a type different from what it was expecting. Read more
source§

fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self

Raised when a Deserialize receives a value of the right type but that is wrong for some other reason. Read more
source§

fn invalid_length(len: usize, exp: &dyn Expected) -> Self

Raised when deserializing a sequence or map and the input data contains too many or too few elements. Read more
source§

fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize enum type received a variant with an unrecognized name.
source§

fn unknown_field(field: &str, expected: &'static [&'static str]) -> Self

Raised when a Deserialize struct type received a field with an unrecognized name.
source§

fn missing_field(field: &'static str) -> Self

Raised when a Deserialize struct type expected to receive a required field with a particular name but that field was not present in the input.
source§

fn duplicate_field(field: &'static str) -> Self

Raised when a Deserialize struct type received more than one of the same field.
source§

impl<S: AsRef<str>> From<Error<S>> for JsError<S>

source§

fn from(err: Error<S>) -> Self

Converts to this type from the input type.
source§

impl<S: AsRef<str>> From<Error<S>> for JsRangeError<S>

source§

fn from(err: Error<S>) -> Self

Converts to this type from the input type.
source§

impl<S: AsRef<str>> From<Error<S>> for JsSyntaxError<S>

source§

fn from(err: Error<S>) -> Self

Converts to this type from the input type.
source§

impl<S: AsRef<str>> From<Error<S>> for JsTypeError<S>

source§

fn from(err: Error<S>) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(error: Error) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(value: SerdeJSONError) -> Self

Converts to this type from the input type.
source§

impl From<Error> for Error

source§

fn from(value: Error) -> Self

Converts to this type from the input type.
source§

impl<S: AsRef<str>> From<Infallible> for Error<S>

source§

fn from(_: Infallible) -> Self

Converts to this type from the input type.
source§

impl From<JsUnknown> for Error

source§

fn from(value: JsUnknown) -> Self

Converts to this type from the input type.
source§

impl From<NulError> for Error

source§

fn from(error: NulError) -> Self

Converts to this type from the input type.
source§

impl<S: AsRef<str>> ToNapiValue for Error<S>

source§

unsafe fn to_napi_value(env: napi_env, val: Self) -> Result<napi_value>

Safety Read more
source§

impl<S> Send for Error<S>where S: Send + AsRef<str>,

source§

impl<S> Sync for Error<S>where S: Sync + AsRef<str>,

Auto Trait Implementations§

§

impl<S> RefUnwindSafe for Error<S>where S: RefUnwindSafe,

§

impl<S> Unpin for Error<S>where S: Unpin,

§

impl<S> UnwindSafe for Error<S>where S: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> JsValuesTupleIntoVec for Twhere T: ToNapiValue,

source§

impl<E> Provider for Ewhere E: Error + ?Sized,

source§

fn provide<'a>(&'a self, demand: &mut Demand<'a>)

🔬This is a nightly-only experimental API. (provide_any)
Data providers should implement this method to provide all values they are able to provide by using demand. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.