diff options
author | syn <isaqtm@gmail.com> | 2020-12-08 10:37:04 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2020-12-08 10:37:04 +0300 |
commit | eaf9228f3a43c3654eeddbd10cfbaf172e4578f4 (patch) | |
tree | 6e24fe86e7ef4e580b559e41b77c113036248a68 /src/backends/run_error.rs | |
parent | 420e77f90ba94cf9f8d3d0f7ae6395ba3ceda89f (diff) | |
download | evr-eaf9228f3a43c3654eeddbd10cfbaf172e4578f4.tar.gz |
cargo fmt
Diffstat (limited to 'src/backends/run_error.rs')
-rw-r--r-- | src/backends/run_error.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backends/run_error.rs b/src/backends/run_error.rs index 6203bbe..0681ea8 100644 --- a/src/backends/run_error.rs +++ b/src/backends/run_error.rs @@ -4,7 +4,7 @@ use std::io::Error as IoError; #[derive(Debug)] pub enum RunError { IoError(std::io::Error), - WaitError(WaitError) + WaitError(WaitError), } impl From<IoError> for RunError { @@ -32,7 +32,7 @@ impl std::error::Error for RunError { fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { match *self { RunError::IoError(ref e) => Some(e), - RunError::WaitError(ref e) => Some(e) + RunError::WaitError(ref e) => Some(e), } } -}
\ No newline at end of file +} |