error[E0308]: mismatched types --> src/main.rs:295:5 | 295 | / context 296 | | .discord_http 297 | | .create_message(channel_id) 298 | | .reply(message_id) ... | 301 | | .await 302 | | .map_err(|e| Box::new(e)) | |_________________________________^ expected trait object `dyn std::error::Error`, found struct `twilight_http::Error` | = note: expected enum `Result<_, Box<(dyn std::error::Error + 'static)>>` found enum `Result<_, Box>` note: return type inferred to be `Result>` here --> src/main.rs:295:5 | 295 | / context 296 | | .discord_http 297 | | .create_message(channel_id) 298 | | .reply(message_id) 299 | | .content(message) 300 | | .map_err(|e| Box::new(e))? | |__________________________________^ error: aborting due to previous error; 1 warning emitted