Struct trackable::error::IoError[][src]

pub struct IoError(_);

A variant of std::io::Error that implements Trackable trait.

Methods from Deref<Target = TrackableError<ErrorKind>>

Returns the kind of this error.

Tries to return the cause of this error as a value of T type.

If neither this error has a cause nor it is an T value, this method will return None.

Trait Implementations

impl Debug for IoError
[src]

Formats the value using the given formatter. Read more

impl Clone for IoError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Deref for IoError
[src]

The resulting type after dereferencing.

Dereferences the value.

impl Display for IoError
[src]

Formats the value using the given formatter. Read more

impl Error for IoError
[src]

This method is soft-deprecated. Read more

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

impl Trackable for IoError
[src]

Event type which a history of an instance of this type can have.

Returns the reference of the tracking history of this instance. Read more

Returns the mutable reference of the tracking history of this instance. Read more

Add an event into the tail of the history of this instance. Read more

Returns true if it is being tracked, otherwise false.

impl From<TrackableError<ErrorKind>> for IoError
[src]

Performs the conversion.

impl From<IoError> for TrackableError<ErrorKind>
[src]

Performs the conversion.

impl From<ErrorKind> for IoError
[src]

Performs the conversion.

impl From<IoError> for Error
[src]

Performs the conversion.

impl From<Error> for IoError
[src]

Performs the conversion.

impl From<Failure> for IoError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for IoError

impl Sync for IoError