Trait Track
pub trait Track {
// Required method
fn track(&self);
}
Expand description
Allows tracking the value of some reactive data.
Required Methodsยง
fn track(&self)
fn track(&self)
Subscribes to this signal in the current reactive scope without doing anything with its value.