neon::types::extract

Struct Error

source
pub struct Error { /* private fields */ }
Expand description

Error that implements TryIntoJs and can produce specific error types.

Error implements From for most error types, allowing ergonomic error handling in exported functions with the ? operator.

§Example

use neon::types::extract::Error;

#[neon::export]
fn read_file(path: String) -> Result<String, Error> {
    let contents = std::fs::read_to_string(path)?;
    Ok(contents)
}

Implementations§

source§

impl Error

source

pub fn new<E>(cause: E) -> Self
where E: Into<Box<dyn Error + Send + Sync + 'static>>,

Create a new Error from a cause

source

pub fn range_error<E>(cause: E) -> Self
where E: Into<Box<dyn Error + Send + Sync + 'static>>,

Create a RangeError

source

pub fn type_error<E>(cause: E) -> Self
where E: Into<Box<dyn Error + Send + Sync + 'static>>,

Create a TypeError

source

pub fn is_range_error(&self) -> bool

Check if error is a RangeError

source

pub fn is_type_error(&self) -> bool

Check if error is a TypeError

source

pub fn cause(&self) -> &Box<dyn Error + Send + Sync + 'static>

Get a reference to the underlying cause

source

pub fn into_cause(self) -> Box<dyn Error + Send + Sync + 'static>

Extract the std::error::Error cause

Trait Implementations§

source§

impl Debug for Error

source§

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

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

impl Display for Error

source§

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

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

impl<E> From<E> for Error
where E: Into<Box<dyn Error + Send + Sync + 'static>>,

source§

fn from(cause: E) -> Self

Converts to this type from the input type.
source§

impl<'cx> TryIntoJs<'cx> for Error

source§

type Value = JsError

The type of JavaScript value that will be created
source§

fn try_into_js(self, cx: &mut Cx<'cx>) -> JsResult<'cx, Self::Value>

Convert self into a JavaScript value

Auto Trait Implementations§

§

impl Freeze for Error

§

impl !RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl !UnwindSafe for Error

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> ToString for T
where 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 T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

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

source§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.