[][src]Struct haiku::support::HaikuError

pub struct HaikuError { /* fields omitted */ }

This struct represents an Error for using this API

The error is very much based on the standard library's std::io::Error, and roughly has the same usage and functionality.

Methods

impl HaikuError[src]

pub fn new<E>(kind: ErrorKind, error: E) -> HaikuError where
    E: Into<Box<dyn Error + Send + Sync>>, 
[src]

Create a new error with a kind, and a custom payload. The most common use is to attach a String that describes the error, but any struct that implements the std::error::Error trait will work.

pub fn last_os_error() -> HaikuError[src]

Create a new error based on the last OS Error.

This function can be used to create an error after calling OS functions that set the global error number on failure.

pub fn from_raw_os_error(code: status_t) -> HaikuError[src]

Convert a raw error constant to a HaikuError object

pub fn raw_os_error(&self) -> Option<status_t>[src]

Convert the current error into a (lower level) Haiku error constant

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

Get the ErrorKind for the current error

Trait Implementations

impl From<ErrorKind> for HaikuError[src]

fn from(kind: ErrorKind) -> HaikuError[src]

This is a shortcut to create a simple error based on an ErrorKind.

impl Display for HaikuError[src]

impl Debug for HaikuError[src]

impl Error for HaikuError[src]

fn cause(&self) -> Option<&dyn Error>
1.0.0
[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

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

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

Auto Trait Implementations

impl Send for HaikuError

impl Sync for HaikuError

Blanket Implementations

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

The type returned in the event of a conversion error.

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