Enum dir_diff::Error
[−]
[src]
pub enum Error {
Io(Error),
StripPrefix(StripPrefixError),
WalkDir(Error),
}The various errors that can happen when diffing two directories
Variants
Io(Error)StripPrefix(StripPrefixError)WalkDir(Error)
Trait Implementations
impl Debug for Error[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl From<Error> for Error[src]
impl From<StripPrefixError> for Error[src]
fn from(e: StripPrefixError) -> Error[src]
Performs the conversion.