Trait ferrum::Error1.0.0 [] [src]

pub trait Error: Debug + Display {
    fn description(&self) -> &str;

    fn cause(&self) -> Option<&Error> { ... }
}

Base functionality for all errors in Rust.

Required Methods

A short description of the error.

The description should only be used for a simple message. It should not contain newlines or sentence-ending punctuation, to facilitate embedding in larger user-facing strings. For showing formatted error messages with more information see Display.

Examples

use std::error::Error;

match "xc".parse::<u32>() {
    Err(e) => {
        println!("Error: {}", e.description());
    }
    _ => println!("No error"),
}

Provided Methods

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

Examples

use std::error::Error;
use std::fmt;

#[derive(Debug)]
struct SuperError {
    side: SuperErrorSideKick,
}

impl fmt::Display for SuperError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "SuperError is here!")
    }
}

impl Error for SuperError {
    fn description(&self) -> &str {
        "I'm the superhero of errors"
    }

    fn cause(&self) -> Option<&Error> {
        Some(&self.side)
    }
}

#[derive(Debug)]
struct SuperErrorSideKick;

impl fmt::Display for SuperErrorSideKick {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "SuperErrorSideKick is here!")
    }
}

impl Error for SuperErrorSideKick {
    fn description(&self) -> &str {
        "I'm SuperError side kick"
    }
}

fn get_super_error() -> Result<(), SuperError> {
    Err(SuperError { side: SuperErrorSideKick })
}

fn main() {
    match get_super_error() {
        Err(e) => {
            println!("Error: {}", e.description());
            println!("Caused by: {}", e.cause().unwrap());
        }
        _ => println!("No error"),
    }
}

Methods

impl Error + 'static
[src]

1.3.0
[src]

Returns true if the boxed type is the same as T

1.3.0
[src]

Returns some reference to the boxed value if it is of type T, or None if it isn't.

1.3.0
[src]

Returns some mutable reference to the boxed value if it is of type T, or None if it isn't.

impl Error + 'static + Send
[src]

1.3.0
[src]

Forwards to the method defined on the type Any.

1.3.0
[src]

Forwards to the method defined on the type Any.

1.3.0
[src]

Forwards to the method defined on the type Any.

impl Error + 'static + Send + Sync
[src]

1.3.0
[src]

Forwards to the method defined on the type Any.

1.3.0
[src]

Forwards to the method defined on the type Any.

1.3.0
[src]

Forwards to the method defined on the type Any.

impl Error + 'static
[src]

1.3.0
[src]

Attempt to downcast the box to a concrete type.

impl Error + 'static + Send
[src]

1.3.0
[src]

Attempt to downcast the box to a concrete type.

impl Error + 'static + Send + Sync
[src]

1.3.0
[src]

Attempt to downcast the box to a concrete type.

Trait Implementations

impl Trait for Error + 'static + Send + Sync

impl Trait for Error + 'static + Send

impl Trait for Error + 'static + Sync

Implementations on Foreign Types

impl Error for ParseError
[src]

[src]

1.0.0
[src]

impl Error for Error

1.0.0
[src]

impl<T> Error for SendError<T> where
    T: Any
[src]

[src]

1.0.0
[src]

impl<T> Error for SendError<T> where
    T: Any
[src]

[src]

1.0.0
[src]

impl<T, E> Error for SendError<T, E> where
    E: Any,
    T: Any
[src]

[src]

1.0.0
[src]

impl<T> Error for TrySendError<T> where
    T: Any
[src]

[src]

1.0.0
[src]

impl<E> Error for SharedError<E> where
    E: Error
[src]

[src]

[src]

impl Error for Canceled
[src]

[src]

1.0.0
[src]

impl Error for DecodeError

impl Error for CharTryFromError
[src]

[src]

1.0.0
[src]

impl Error for IntoStringError
[src]

[src]

[src]

impl<T> Error for TrySendError<T> where
    T: Send
[src]

[src]

[src]

impl Error for DecodeUtf16Error
[src]

[src]

1.0.0
[src]

impl Error for JoinPathsError
[src]

[src]

[src]

impl Error for CharsError
[src]

[src]

[src]

impl Error for Error
[src]

[src]

[src]

impl Error for CannotReallocInPlace
[src]

[src]

1.0.0
[src]

impl Error for BorrowError
[src]

[src]

1.0.0
[src]

impl Error for AllocErr
[src]

[src]

1.0.0
[src]

impl Error for FromBytesWithNulError
[src]

[src]

1.0.0
[src]

impl Error for SystemTimeError
[src]

[src]

1.0.0
[src]

impl Error for VarError
[src]

[src]

[src]

impl Error for RecvError
[src]

[src]

[src]

impl Error for ParseBoolError
[src]

[src]

[src]

impl Error for ParseCharError
[src]

[src]

1.0.0
[src]

impl Error for ParseIntError
[src]

[src]

[src]

impl Error for NulError
[src]

[src]

[src]

impl<T> Error for SendError<T> where
    T: Send
[src]

[src]

[src]

impl Error for StripPrefixError
[src]

[src]

1.0.0
[src]

impl Error for TryRecvError
[src]

[src]

[src]

impl Error for ParseError
[src]

[src]

1.0.0
[src]

impl Error for FromUtf16Error
[src]

[src]

[src]

impl<T> Error for TryLockError<T>
[src]

[src]

[src]

impl<T> Error for Box<T> where
    T: Error
[src]

[src]

[src]

impl Error for Utf8Error
[src]

[src]

[src]

impl<W> Error for IntoInnerError<W> where
    W: Send + Debug
[src]

[src]

[src]

impl Error for AddrParseError
[src]

[src]

1.0.0
[src]

impl<T> Error for PoisonError<T>
[src]

[src]

[src]

impl Error for BorrowMutError
[src]

[src]

1.0.0
[src]

impl Error for TryFromIntError
[src]

[src]

1.0.0
[src]

impl Error for FromUtf8Error
[src]

[src]

[src]

impl Error for RecvTimeoutError
[src]

[src]

[src]

impl Error for ParseFloatError
[src]

[src]

[src]

impl Error for Error
[src]

[src]

1.0.0
[src]

impl Error for FrameTooBig
[src]

[src]

1.0.0
[src]

impl Error for ShutdownLoggerError
[src]

[src]

1.0.0
[src]

impl Error for SetLoggerError
[src]

[src]

1.0.0
[src]

impl Error for FromStrError
[src]

[src]

1.0.0
[src]

impl Error for Error

1.0.0
[src]

impl Error for TimerError
[src]

[src]

1.0.0
[src]

impl Error for OutOfRangeError
[src]

[src]

1.0.0
[src]

impl Error for ParseError
[src]

[src]

1.0.0
[src]

impl Error for ParseLevelError
[src]

[src]

1.0.0
[src]

impl Error for SetLoggerError
[src]

[src]

1.0.0
[src]

impl Error for UriError
[src]

[src]

1.0.0
[src]

Implementors