[][src]Struct honeybadger::notice::Error

pub struct Error {
    pub class: String,
    pub message: Option<String>,
    pub causes: Option<Vec<Error>>,
}

Serializable leaf node representing the error to notify on.

Fields

class: Stringmessage: Option<String>causes: Option<Vec<Error>>

Methods

impl Error[src]

pub fn new<E>(error: &E) -> Error where
    E: ChainedError
[src]

Internal API to create a new Error instance for serialization purposes.

Trait Implementations

impl From<Error> for Error[src]

Implementation of the From trait for failure::Error, which allows bastic failure functionality to be used with the Honeybadger::into_payload API, to marshal a payload for Honeybadger's Exceptions API.

impl<'_> From<&'_ Error> for Error[src]

impl From<Box<dyn Error + 'static>> for Error[src]

impl Serialize for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Erased for T