Skip to content

Commit

Permalink
scupt-util, Error trait
Browse files Browse the repository at this point in the history
  • Loading branch information
ybbh committed Mar 4, 2024
1 parent 04ebce4 commit 7525587
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/error_type.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use std::error::{Error};
use std::fmt;

#[derive(Debug, PartialEq, Eq, Clone)]
Expand Down Expand Up @@ -44,4 +45,8 @@ impl fmt::Display for ET {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:?}", self)
}
}

impl Error for ET {

}

0 comments on commit 7525587

Please sign in to comment.