Struct Signal

Source
pub struct Signal<T> { /* private fields */ }
Expand description

A reactive signal that holds a value, tracks dependencies, and triggers effects.

Signal<T> behaves similarly to a traditional “Property” (getter/setter), but on top of that, it automatically tracks which reactive computations or effects access it. When its value changes, all dependent effects are automatically re-run.

In short:

  • Like a Property: provides get() and set() for accessing and updating the value.
  • Adds tracking: automatically records dependencies when read inside reactive contexts, and automatically triggers dependent Effects when updated.

§Type Parameters

  • T: The type of the value stored in the signal. Must implement Eq + Default.

Implementations§

Source§

impl<T> Signal<T>

Source

pub fn new(value: Option<T>) -> Self
where T: Default,

Creates a new Signal with the given initial value.

If None is provided, T::default() is used.

§Examples
use reactive_cache::Signal;

let signal = Signal::new(Some(10));
assert_eq!(*signal.get(), 10);

let default_signal: Signal<i32> = Signal::new(None);
assert_eq!(*default_signal.get(), 0);
Source

pub fn get(&self) -> Ref<'_, T>

Gets a reference to the current value, tracking dependencies and effects if inside a reactive context.

§Examples
use reactive_cache::Signal;

let signal = Signal::new(Some(42));
assert_eq!(*signal.get(), 42);
Source

pub fn set(&self, value: T) -> bool
where T: Eq,

Sets the value of the signal.

Returns true if the value changed and dependent effects were triggered.

§Examples
use reactive_cache::Signal;

let signal = Signal::new(Some(5));
assert_eq!(signal.set(10), true);
assert_eq!(*signal.get(), 10);

// Setting to the same value returns false
assert_eq!(signal.set(10), false);

Auto Trait Implementations§

§

impl<T> !Freeze for Signal<T>

§

impl<T> !RefUnwindSafe for Signal<T>

§

impl<T> !Send for Signal<T>

§

impl<T> !Sync for Signal<T>

§

impl<T> Unpin for Signal<T>
where T: Unpin,

§

impl<T> !UnwindSafe for Signal<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.