diff options
author | Vincent Ambo <mail@tazj.in> | 2021-04-05T18·00+0200 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-04-05T19·19+0000 |
commit | 8fc4e083c9c5f1dce759461dc4c45e26151a3ad1 (patch) | |
tree | 1967037f3947a09eb139320bdaa53fc0e08ae430 /web/converse/src/errors.rs | |
parent | a0c4b91955662297ec5bd9249a9488ea6d52defc (diff) |
chore(web/converse): Apply 'cargo fix --edition' r/2444
This does not yet change up `extern crate` and `macro_use` statements, but since we still depend on Diesel that also wouldn't work right now. Change-Id: I36de1b7b56f7d220f567346e13bad8da06461517 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2858 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'web/converse/src/errors.rs')
-rw-r--r-- | web/converse/src/errors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/converse/src/errors.rs b/web/converse/src/errors.rs index 95b2366ce509..6b22f8d39aa5 100644 --- a/web/converse/src/errors.rs +++ b/web/converse/src/errors.rs @@ -66,7 +66,7 @@ pub enum ConverseError { // actix-web-compatible response errors, such as the errors it // throws itself. #[fail(display = "Actix response error: {}", error)] - Actix { error: Box<ResponseError> }, + Actix { error: Box<dyn ResponseError> }, } // Establish conversion links to foreign errors: |