mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Adjust impl for signal syntax to allow cloned values
This commit is contained in:
parent
33bba24867
commit
d88561f973
2 changed files with 6 additions and 3 deletions
|
@ -14,7 +14,7 @@ fn app() -> Element {
|
|||
// Signals are backed by a runtime that is designed to deeply integrate with Dioxus apps
|
||||
use_future(|| async move {
|
||||
loop {
|
||||
if running.cloned() {
|
||||
if running() {
|
||||
count += 1;
|
||||
}
|
||||
tokio::time::sleep(Duration::from_millis(400)).await;
|
||||
|
|
|
@ -348,7 +348,10 @@ impl<T: 'static> PartialEq for Signal<T> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<T: Copy> Deref for Signal<T> {
|
||||
/// Allow calling a signal with signal() syntax
|
||||
///
|
||||
/// Currently only limited to copy types, though could probably specialize for string/arc/rc
|
||||
impl<T: Copy + Clone> Deref for Signal<T> {
|
||||
type Target = dyn Fn() -> T;
|
||||
|
||||
fn deref(&self) -> &Self::Target {
|
||||
|
@ -486,7 +489,7 @@ impl<T: 'static> PartialEq for ReadOnlySignal<T> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<T: Copy> Deref for ReadOnlySignal<T> {
|
||||
impl<T: Copy + Clone> Deref for ReadOnlySignal<T> {
|
||||
type Target = dyn Fn() -> T;
|
||||
|
||||
fn deref(&self) -> &Self::Target {
|
||||
|
|
Loading…
Reference in a new issue