You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if there is invalid data entered into the view!() macro the below error shows up at #[widget]
65 | #[widget]
| ^^^^^^^^^
|
= help: message: should be an ident: Error("expected identifier")
Ideally this error should highlight the invalid data.
Or the error message could be clarified that the unexpected identifier is in the view macro. Since a large quantity of code can be in the impl block below #[widget]
This invalid data could include like show below if you put an if statement.
Currently if there is invalid data entered into the
view!()
macro the below error shows up at#[widget]
Ideally this error should highlight the invalid data.
Or the error message could be clarified that the unexpected identifier is in the view macro. Since a large quantity of code can be in the
impl
block below#[widget]
This invalid data could include like show below if you put an if statement.
The text was updated successfully, but these errors were encountered: