use ;
/// A wrapper for errors implementing `std::error::Error`, that when `Debug`ged, will `Display` the contained error. Usually used in the signature of a `main` function - see examples in the [crate documentation](crate).
///
/// # Example
///
/// ```rust
/// # use disperror::DispError;
/// use std::io::{Error, ErrorKind};
/// let error = Error::new(ErrorKind::NotFound, "File not found");
/// let disp_error = DispError::from(error);
/// assert_eq!(format!("{:?}", disp_error), "File not found");
/// ```
;