UnwindError

Enum UnwindError 

Source
pub enum UnwindError {
    Unspecified,
    NoMemory,
    BadRegister,
    WriteToReadOnlyRegister,
    StopUnwinding,
    InvalidIP,
    BadFrame,
    BadValue,
    BadVersion,
    NoInfo,
    Unknown {
        code: uw_error_t,
    },
}
Expand description

An error that can occur during unwinding.

Variants§

§

Unspecified

Unspecified/general error.

§

NoMemory

Out of memory

§

BadRegister

Invalid register

§

WriteToReadOnlyRegister

Attempt to write to a read-only register

§

StopUnwinding

Stop unwinding

§

InvalidIP

Invalid instruction pointer

§

BadFrame

Bad frame

§

BadValue

Unsupported operation or bad value

§

BadVersion

Unwind info has unsupported version

§

NoInfo

No unwind info found

§

Unknown

An error with an unknown error code occured

Fields

§code: uw_error_t

The error’s code

Implementations§

Source§

impl UnwindError

Source

pub const fn from_code(code: uw_error_t) -> Result<uw_error_t, UnwindError>

Creates a Result that is Ok if the error code represents a success and Err if it represents an error.

Trait Implementations§

Source§

impl Debug for UnwindError

Source§

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

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

impl Display for UnwindError

Source§

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

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

impl Error for UnwindError
where Self: Debug + Display,

Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§

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

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

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

Returns the lower-level source of this error, if any. Read more
§

fn provide<'a>(&'a self, request: &mut Request<'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 ErrorCompat for UnwindError

Source§

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

Returns a Backtrace that may be printed.
Source§

fn iter_chain(&self) -> ChainCompat<'_, '_>
where Self: AsErrorSource,

Returns an iterator for traversing the chain of errors, starting with the current error and continuing with recursive calls to Error::source. Read more

Auto Trait Implementations§

§

impl Freeze for UnwindError

§

impl RefUnwindSafe for UnwindError

§

impl Send for UnwindError

§

impl Sync for UnwindError

§

impl Unpin for UnwindError

§

impl UnwindSafe for UnwindError

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsErrorSource for T
where T: Error + 'static,

Source§

fn as_error_source(&self) -> &(dyn Error + 'static)

For maximum effectiveness, this needs to be called as a method to benefit from Rust’s automatic dereferencing of method receivers.
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.