Your SampleComponent Rust docs suggest that generated components implement Send and Sync (as well as UnwindSafe and RefUnwindSafe). But when running cargo doc on my project with a .slint file, my struct MainWindow shows !Send, !Sync etc. under "Auto Trait Implementations".
Your
SampleComponent
Rust docs suggest that generated components implementSend
andSync
(as well asUnwindSafe
andRefUnwindSafe
). But when runningcargo doc
on my project with a .slint file, mystruct MainWindow
shows!Send
,!Sync
etc. under "Auto Trait Implementations".PS:
Weak
beingSend
is correct, right?