aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-04-01 05:46:31 +0000
committerFuwn <[email protected]>2024-04-01 05:46:31 +0000
commitbf47405d6d5ebe363159a75ed2ac3c8f267d537e (patch)
tree9da272ac1e8655e7a210eff5975ab3234cd5de90 /src
parentfix(clippy): lints (diff)
downloadwindmark-bf47405d6d5ebe363159a75ed2ac3c8f267d537e.tar.xz
windmark-bf47405d6d5ebe363159a75ed2ac3c8f267d537e.zip
build(rustc): update toolchain
Diffstat (limited to 'src')
-rw-r--r--src/router.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/router.rs b/src/router.rs
index 0c69d2e..e99caa8 100644
--- a/src/router.rs
+++ b/src/router.rs
@@ -765,7 +765,7 @@ impl Router {
/// ```
pub fn attach_async(
&mut self,
- mut module: impl AsyncModule + 'static + Send,
+ mut module: impl AsyncModule + 'static,
) -> &mut Self {
block!({
module.on_attach(self).await;