mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Revert "feat: Manual impl of PartialEq for Coroutine
" (#2899)
* Revert "feat: Manual impl of PartialEq for `Coroutine` (#2895)"
This reverts commit e6efd973d8
.
* Update use_coroutine.rs
* Update use_coroutine.rs
* Update use_coroutine.rs
This commit is contained in:
parent
e552251683
commit
91112734f6
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ impl<T> Clone for Coroutine<T> {
|
|||
}
|
||||
|
||||
impl<T> PartialEq for Coroutine<T> {
|
||||
fn clone(&self) -> Self {
|
||||
fn eq(&self, other: &Self) -> bool {
|
||||
self.needs_regen == other.needs_regen && self.tx == other.tx && self.task == other.task
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue