[][src]Struct simple_error::SimpleError

pub struct SimpleError { /* fields omitted */ }

A type that represents a simple error.

This type uses a String to store the error string, and it implements std::error::Error.

Implementations

impl SimpleError[src]

pub fn new<T: Into<String>>(t: T) -> SimpleError[src]

Creates a new simple error.

This function can take any type that implements Into<String>.

Examples

use self::simple_error::SimpleError;

// errors can be created from `str`
let err = SimpleError::new("an error from str");

// errors can also be created from `String`
let err = SimpleError::new(String::from("an error from String"));

pub fn from<T: Error>(t: T) -> SimpleError[src]

Creates a new simple error from another error.

This function can take any type that implements std::error::Error. The error string will be the Display of the std::error::Error.

Examples

use self::simple_error::SimpleError;
use std::io;

// errors can be created from `io::Error`
let err = SimpleError::from(io::Error::new(io::ErrorKind::Other, "oh no"));
assert_eq!("oh no", format!("{}", err));

pub fn with<T: Error>(s: &str, t: T) -> SimpleError[src]

Creates a new simple error from a string with another error.

This function takes a string as error and a type that implements std::error::Error as reason. The error string will be the Display of the std::error::Error prefixed with the string and ", ".

Examples

use self::simple_error::SimpleError;

let err = SimpleError::with("cannot turn on tv", SimpleError::new("remote not found"));
assert_eq!("cannot turn on tv, remote not found", format!("{}", err));

pub fn as_str(&self) -> &str[src]

Extracts a string slice describing the error.

Examples

use self::simple_error::SimpleError;

let s = SimpleError::new("critical error");
assert_eq!("critical error", s.as_str());

Trait Implementations

impl Clone for SimpleError[src]

impl Debug for SimpleError[src]

impl Display for SimpleError[src]

impl Eq for SimpleError[src]

impl Error for SimpleError[src]

impl<'a> From<&'a str> for SimpleError[src]

impl PartialEq<SimpleError> for SimpleError[src]

impl StructuralEq for SimpleError[src]

impl StructuralPartialEq for SimpleError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.