[][src]Trait strerror::IntoError

pub trait IntoError {
    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> IntoError for S where
    S: Into<StrError>, 
[src]

Loading content...