refactor: no Sync bound for Message

This commit is contained in:
Ashley Wulber 2024-04-01 18:10:30 -04:00 committed by Michael Murphy
parent 745cba1c2c
commit b240e3fef2
2 changed files with 2 additions and 2 deletions

2
iced

@ -1 +1 @@
Subproject commit 5b9f77b4ac043213fd913fbc20cba18f36a680ab
Subproject commit 46ef2e2a2c1d133e4988133369a9cb9fa3bd1b19

View file

@ -401,7 +401,7 @@ where
type Flags;
/// Message type specific to our app.
type Message: Clone + std::fmt::Debug + Send + Sync + 'static;
type Message: Clone + std::fmt::Debug + Send + 'static;
/// An ID that uniquely identifies the application.
/// The standard is to pick an ID based on a reverse-domain name notation.