summaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
authorImran Iqbal <imran@imraniqbal.org>2021-10-11 20:51:52 -0400
committerMatthias Beyer <mail@beyermatthias.de>2021-11-02 19:45:55 +0100
commitaa22454b1b527435dd2f2d7c4f88862a437f1483 (patch)
treeb567725018531853dd9eebaeae409d79c83f30fc /src/error.rs
parent392c332c5a77ca40d1cf33695bbc12c3632cfae6 (diff)
Run `cargo fmt`
Suggested-by: Dheepak Krishnamurthy <me@kdheepak.com> Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/error.rs b/src/error.rs
index 2ed9bd5..af4dfd5 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -9,7 +9,6 @@
/// Failure error kind type, defining error messages
#[derive(Debug, Clone, Eq, PartialEq, Fail)]
pub enum ErrorKind {
-
/// Error kind indicating that the JSON parser failed
#[fail(display = "Failed to create a Task from JSON")]
ParserError,
@@ -24,6 +23,5 @@ pub enum ErrorKind {
/// Error kind indicating that a conversion to JSON failed
#[fail(display = "A Task could not be converted to JSON")]
- SerializeError
+ SerializeError,
}
-