diff options
| author | Eskil Queseth <eskilq@kth.se> | 2020-10-17 21:28:40 +0200 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2020-10-17 21:28:40 +0200 |
| commit | ccc5f76133460d055a5d90ae9cd0a7bc2a83551d (patch) | |
| tree | 43d27a68fe15ef5f28bd08161bd03d1a39a00186 /mumlib/src/error.rs | |
| parent | 7675171e2c307c91a81b0daee915c2a114ae4612 (diff) | |
| parent | f1df606dfeafbfe93066d23f378d7fdbd1b4e9e1 (diff) | |
| download | mum-ccc5f76133460d055a5d90ae9cd0a7bc2a83551d.tar.gz | |
Merge remote-tracking branch 'origin/pretty-print' into main
Diffstat (limited to 'mumlib/src/error.rs')
| -rw-r--r-- | mumlib/src/error.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mumlib/src/error.rs b/mumlib/src/error.rs index 6c66c1f..a4c6dcb 100644 --- a/mumlib/src/error.rs +++ b/mumlib/src/error.rs @@ -1,6 +1,6 @@ -use serde::{Serialize, Deserialize}; -use std::fmt::Display; use serde::export::Formatter; +use serde::{Deserialize, Serialize}; +use std::fmt::Display; pub type Result<T> = std::result::Result<T, Error>; @@ -37,4 +37,4 @@ impl Display for ChannelIdentifierError { ChannelIdentifierError::Ambiguous => write!(f, "Ambiguous channel identifier"), } } -}
\ No newline at end of file +} |
