[]Struct json_typegen_shared::JTError

pub struct JTError(pub ErrorKind, _);

The Error type.

This tuple struct is made of two elements:

  • an ErrorKind which is used to determine the type of the error.
  • An internal State, not meant for direct use outside of error_chain internals, containing:
    • a backtrace, generated when the error is created.
    • an error chain, used for the implementation of Error::cause().

Methods

impl JTError

pub fn from_kind(kind: ErrorKind) -> JTError

Constructs an error from a kind, and generates a backtrace.

pub fn with_chain<E, K>(error: E, kind: K) -> JTError where
    E: Error + Send + 'static,
    K: Into<ErrorKind>, 

Constructs a chained error from another error and a kind, and generates a backtrace.

pub fn kind(&self) -> &ErrorKind

Returns the kind of the error.

pub fn iter(&self) -> ErrorChainIter

Iterates over the error chain.

pub fn backtrace(&self) -> Option<&Backtrace>

Returns the backtrace associated with this error.

Methods from Deref<Target = ErrorKind>

pub fn description(&self) -> &str

A string describing the error kind.

Trait Implementations

impl From<Error> for JTError

impl From<Error> for JTError

impl From<Error> for JTError

impl From<ErrorKind> for JTError

impl<'a> From<&'a str> for JTError

impl From<String> for JTError

impl From<JTError> for ErrorKind

impl Display for JTError

impl Debug for JTError

impl Deref for JTError

type Target = ErrorKind

The resulting type after dereferencing.

impl Error for JTError

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

impl ChainedError for JTError

type ErrorKind = ErrorKind

Associated kind type.

fn display(&'a self) -> Display<'a, Self>[src]

Returns an object which implements Display for printing the full context of this error. Read more

Auto Trait Implementations

impl Send for JTError

impl !Sync for JTError

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T