[][src]Trait strerror::StringIntoErrorExt

pub trait StringIntoErrorExt {
    fn into_error(self) -> StrError;
}

Trait providing into_error for converting a String or &str to a StrError.

See crate level documentation for usage examples.

Required methods

fn into_error(self) -> StrError

Convert a String or &str to a StrError.

Loading content...

Implementors

impl<S> StringIntoErrorExt for S where
    S: Into<String>, 
[src]

Loading content...