pub struct Signal<T>(/* private fields */);Expand description
A container of reactive state that can be updated and subscribed to.
§Example
Creating a Signal requires a reactive Scope. Generally, you can use the cx parameter
obtained from your component or from inside a create_effect_scoped.
let signal = create_signal(cx, 123); // A signal of type `i32`.
let signal = create_signal(cx, true); // A signal of type `bool`.
let signal = create_signal(cx, "abc"); // A signal of type `&str`.Implementations§
Source§impl<T> Signal<T>
impl<T> Signal<T>
Sourcepub fn set(&self, value: T)
pub fn set(&self, value: T)
Set the current value of the state.
This will notify and update any effects and memos that depend on this value.
§Example
let state = create_signal(cx, 0);
assert_eq!(*state.get(), 0);
state.set(1);
assert_eq!(*state.get(), 1);Sourcepub fn set_rc(&self, value: Rc<T>)
pub fn set_rc(&self, value: Rc<T>)
Set the current value of the state wrapped in a Rc. Unlike Signal::set(), this
method accepts the value wrapped in a Rc because the underlying storage is already using
Rc, thus preventing an unnecessary clone.
This will notify and update any effects and memos that depend on this value.
§Example
let state = create_signal(cx, 0);
assert_eq!(*state.get(), 0);
state.set_rc(Rc::new(1));
assert_eq!(*state.get(), 1);Sourcepub fn set_silent(&self, value: T)
pub fn set_silent(&self, value: T)
Set the current value of the state without triggering subscribers.
Make sure you know what you are doing because this can make state inconsistent.
Sourcepub fn set_rc_silent(&self, value: Rc<T>)
pub fn set_rc_silent(&self, value: Rc<T>)
Set the current value of the state wrapped in a Rc without triggering subscribers.
See the documentation for Signal::set_rc() for more information.
Make sure you know what you are doing because this can make state inconsistent.
Sourcepub fn split(&self) -> (impl Fn() + Copy, impl Fn(T) + Copy)
pub fn split(&self) -> (impl Fn() + Copy, impl Fn(T) + Copy)
Split a signal into getter and setter handles.
§Example
let (state, set_state) = create_signal(cx, 0).split();
assert_eq!(*state(), 0);
set_state(1);
assert_eq!(*state(), 1);Sourcepub fn trigger_subscribers(&self)
pub fn trigger_subscribers(&self)
Calls all the subscribers without modifying the state.
This can be useful when using patterns such as inner mutability where the state updated will
not be automatically triggered. In the general case, however, it is preferable to use
Signal::set() instead.
This will also re-compute all the subscribers of this signal by calling all the dependency callbacks.
Source§impl<T> Signal<T>where
T: Default,
impl<T> Signal<T>where
T: Default,
Sourcepub fn take(&self) -> Rc<T>
pub fn take(&self) -> Rc<T>
Take the current value out and replace it with the default value.
This will notify and update any effects and memos that depend on this value.
Sourcepub fn take_silent(&self) -> Rc<T>
pub fn take_silent(&self) -> Rc<T>
Take the current value out and replace it with the default value without triggering subscribers.
Make sure you know what you are doing because this can make state inconsistent.
Methods from Deref<Target = ReadSignal<T>>§
Sourcepub fn get(&self) -> Rc<T>
pub fn get(&self) -> Rc<T>
Get the current value of the state. When called inside a reactive scope, calling this will add itself to the scope’s dependencies.
§Example
let state = create_signal(cx, 0);
assert_eq!(*state.get(), 0);
state.set(1);
assert_eq!(*state.get(), 1);Sourcepub fn get_untracked(&self) -> Rc<T>
pub fn get_untracked(&self) -> Rc<T>
Get the current value of the state, without tracking this as a dependency if inside a reactive context.
§Example
let state = create_signal(cx, 1);
let double = create_memo(cx, || *state.get_untracked() * 2);
assert_eq!(*double.get(), 2);
state.set(2);
// double value should still be old value because state was untracked
assert_eq!(*double.get(), 2);Sourcepub fn map<'a, U>(
&'a self,
cx: BoundedScope<'a, 'a>,
f: impl FnMut(&T) -> U + 'a,
) -> &'a ReadSignal<U>
pub fn map<'a, U>( &'a self, cx: BoundedScope<'a, 'a>, f: impl FnMut(&T) -> U + 'a, ) -> &'a ReadSignal<U>
Creates a mapped ReadSignal. This is equivalent to using
create_memo.
§Example
let state = create_signal(cx, 1);
let double = state.map(cx, |&x| x * 2);
assert_eq!(*double.get(), 2);
state.set(2);
assert_eq!(*double.get(), 4);Sourcepub fn track(&self)
pub fn track(&self)
When called inside a reactive scope, calling this will add itself to the scope’s dependencies.
To both track and get the value of the signal, use ReadSignal::get instead.
Trait Implementations§
Source§impl<T> AddAssign<T> for &Signal<T>
impl<T> AddAssign<T> for &Signal<T>
Source§fn add_assign(&mut self, other: T)
fn add_assign(&mut self, other: T)
+= operation. Read moreSource§impl<'a, T> AnyReadSignal<'a> for Signal<T>
impl<'a, T> AnyReadSignal<'a> for Signal<T>
Source§fn track(&self)
fn track(&self)
ReadSignal::track method.Source§impl<T> DivAssign<T> for &Signal<T>
impl<T> DivAssign<T> for &Signal<T>
Source§fn div_assign(&mut self, other: T)
fn div_assign(&mut self, other: T)
/= operation. Read moreSource§impl<T> MulAssign<T> for &Signal<T>
impl<T> MulAssign<T> for &Signal<T>
Source§fn mul_assign(&mut self, other: T)
fn mul_assign(&mut self, other: T)
*= operation. Read moreSource§impl<T> SubAssign<T> for &Signal<T>
impl<T> SubAssign<T> for &Signal<T>
Source§fn sub_assign(&mut self, other: T)
fn sub_assign(&mut self, other: T)
-= operation. Read moreimpl<T> Eq for Signal<T>where
T: Eq,
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>
impl<T> !UnwindSafe for Signal<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CallHasher for T
impl<T> CallHasher for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.