Replies: 1 comment 3 replies
-
That sounds like a bug. Could you please post a backtrace? (Maybe setting RUST_BACKTRACE=1 will help showing it) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm very confused. I have a ModelRc of structs that gets populated from an HTTP request. Each struct is meant to get a Path drawn in the UI.
This runs correctly:
for field[i] in select-map(map-combo.current-index).fields : Text {
text: field.commands;
}
This crashes on compile:
for field[i] in select-map(map-combo.current-index).fields : Path {
commands: field.commands;
stroke: green;
stroke-width: 1px;
}
with this error: thread 'main' panicked at 'already mutably borrowed: BorrowError'
Can anyone help?
Beta Was this translation helpful? Give feedback.
All reactions