mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
feat: added Debug, PartialEq and Eq derives to trigger. (#1060)
This commit is contained in:
parent
2cb68c0bd4
commit
076aa363a4
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ use crate::{
|
|||
/// Reactive Trigger, notifies reactive code to rerun.
|
||||
///
|
||||
/// See [`create_trigger`] for more.
|
||||
#[derive(Clone, Copy)]
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||
pub struct Trigger {
|
||||
pub(crate) runtime: RuntimeId,
|
||||
pub(crate) id: NodeId,
|
||||
|
|
Loading…
Reference in a new issue