[][src]Enum fuchsia_backtrace::Error

pub enum Error {
    NameError(Utf8Error),
    BuildIDError,
}

These errors encode issues that arise while parsing information about each DSO.

Variants

NameError(Utf8Error)

NameError means that an error occurred while converting a C style string into a rust string.

BuildIDError

BuildIDError means that we didn't find a build ID. This could either be because the DSO had no build ID or because the segment containing the build ID was malformed.

Auto Trait Implementations

impl Send for Error

impl Unpin for Error

impl Sync for Error

impl UnwindSafe for Error

impl RefUnwindSafe 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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