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
error info:
cannot move out of title, a captured variable in an FnMut closure title is moved hererustcClick for full compiler diagnostic
main.rs(24, 23): captured outer variable
main.rs(27, 5): captured by this FnMut closure
main.rs(43, 38): variable moved due to use in closure
main.rs(43, 38): move occurs because title has type String, which does not implement the Copy trait
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
Sycamore: [e.g. 0.8.2, master]
Browser: [e.g. chrome, safari, if applicable]
OS: [e.g. Windows, if applicable]
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
#[component(inline_props)]
fn T<G:Html>(cx:Scope,title: String, level: i32) -> View {
let tt = title.clone();
let tt_clone = title.clone();
view!{
cx,
(
if level<5 {
view!{
cx,
T(
title="afasdf".to_string(),
level=level+1
)
}
} else {
view!{
cx,
p(
on:click=move |e| {
console!(title.clone());
}
){
(tt)
}
}
}
)
}
}
error info:
cannot move out of
title
, a captured variable in anFnMut
closuretitle
is moved hererustcClick for full compiler diagnosticmain.rs(24, 23): captured outer variable
main.rs(27, 5): captured by this
FnMut
closuremain.rs(43, 38): variable moved due to use in closure
main.rs(43, 38): move occurs because
title
has typeString
, which does not implement theCopy
traitExpected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Environment
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: