[][src]Struct abscissa_core::error::framework::FrameworkError

pub struct FrameworkError(_);

Abscissa-internal framework errors

Methods from Deref<Target = Context<FrameworkErrorKind>>

pub fn kind(&self) -> &Kind[src]

Get the kind of error

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

Get the backtrace associated with this error (if available)

Trait Implementations

impl Debug for FrameworkError[src]

impl Deref for FrameworkError[src]

type Target = Context<FrameworkErrorKind>

The resulting type after dereferencing.

impl Display for FrameworkError[src]

impl Error for FrameworkError[src]

impl From<Context<FrameworkErrorKind>> for FrameworkError[src]

impl From<Error> for FrameworkError[src]

impl From<Error> for FrameworkError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsAny for T where
    T: Any
[src]

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

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

impl<T> Erased for T

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.