-
|
For study purpose, I tried upgrading the package that I use, regreet, onto newer (example of error for If I try to upgrade to e.g. for this code: connect_activate[
sender, usernames_box, username_entry, sessions_box, session_entry
] => move |this| {
sender.input(Self::Input::Login {
input: this.text().to_string(),
info: UserSessInfo::extract(
&usernames_box, &username_entry, &sessions_box, &session_entry
),
})
}I have an error: Thourgh trial-and-error I've managed to fix (?) it by making these references with connect_activate[
sender, &usernames_box, &username_entry, &sessions_box, &session_entry
] => move |this| {However, now it errors on I've read the blog entries for each release after Not asking for a rewrite for me ofc, a simple advice of what's going on wrong would be enough :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
This is probably something to ask somewhere related to relm4. |
Beta Was this translation helpful? Give feedback.
This is probably something to ask somewhere related to relm4.