aboutsummaryrefslogtreecommitdiffstats
path: root/rust/src/auth.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-08-26 13:33:51 +0200
committerBryan Newbold <bnewbold@robocracy.org>2019-08-26 13:33:51 +0200
commitef5321fce597a5633425ce25ea4582ff06071d31 (patch)
tree760b8229e46a33e7e8d11ff8c5e79aad697aed80 /rust/src/auth.rs
parent33af234aa7d776e5d1ef28d08cca712d6d10cdac (diff)
downloadfatcat-ef5321fce597a5633425ce25ea4582ff06071d31.tar.gz
fatcat-ef5321fce597a5633425ce25ea4582ff06071d31.zip
cargo fix ('dyn' keywords)
Diffstat (limited to 'rust/src/auth.rs')
-rw-r--r--rust/src/auth.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/auth.rs b/rust/src/auth.rs
index 1f0a1193..1a006ffd 100644
--- a/rust/src/auth.rs
+++ b/rust/src/auth.rs
@@ -101,7 +101,7 @@ impl iron::Error for AuthError {
fn description(&self) -> &str {
&self.msg
}
- fn cause(&self) -> Option<&iron::Error> {
+ fn cause(&self) -> Option<&dyn iron::Error> {
None
}
}