Struct dioxus_hooks::UseRef
source · pub struct UseRef<T> { /* private fields */ }
Expand description
A type created by the use_ref
hook. See its documentation for more details.
Implementations§
source§impl<T> UseRef<T>
impl<T> UseRef<T>
sourcepub fn read(&self) -> Ref<'_, T>
pub fn read(&self) -> Ref<'_, T>
Read the value in the RefCell into a Ref
. If this method is called
while other values are still being read
or write
, then your app will crash.
Be very careful when working with this method. If you can, consider using
the with
and with_mut
methods instead, choosing to render Elements
during the read calls.
sourcepub fn write(&self) -> RefMut<'_, T>
pub fn write(&self) -> RefMut<'_, T>
Mutably unlock the value in the RefCell. This will mark the component as “dirty”
Uses to write
should be as short as possible.
Be very careful when working with this method. If you can, consider using
the with
and with_mut
methods instead, choosing to render Elements
during the read and write calls.
sourcepub fn set(&self, new: T)
pub fn set(&self, new: T)
Set the curernt value to new_value
. This will mark the component as “dirty”
This change will propagate immediately, so any other contexts that are
using this RefCell will also be affected. If called during an async context,
the component will not be re-rendered until the next .await
call.
sourcepub fn write_silent(&self) -> RefMut<'_, T>
pub fn write_silent(&self) -> RefMut<'_, T>
Mutably unlock the value in the RefCell. This will not mark the component as dirty. This is useful if you want to do some work without causing the component to re-render.
Uses to write
should be as short as possible.
Be very careful when working with this method. If you can, consider using
the with
and with_mut
methods instead, choosing to render Elements
sourcepub fn with<O>(&self, immutable_callback: impl FnOnce(&T) -> O) -> O
pub fn with<O>(&self, immutable_callback: impl FnOnce(&T) -> O) -> O
Take a reference to the inner value termporarily and produce a new value
Note: You can always “reborrow” the value through the RefCell. This method just does it for you automatically.
let val = use_ref(|| HashMap::<u32, String>::new());
// use reborrowing
let inner = &*val.read();
// or, be safer and use `with`
val.with(|i| println!("{:?}", i));
sourcepub fn with_mut<O>(&self, mutable_callback: impl FnOnce(&mut T) -> O) -> O
pub fn with_mut<O>(&self, mutable_callback: impl FnOnce(&mut T) -> O) -> O
Take a reference to the inner value termporarily and produce a new value, modifying the original in place.
Note: You can always “reborrow” the value through the RefCell. This method just does it for you automatically.
let val = use_ref(|| HashMap::<u32, String>::new());
// use reborrowing
let inner = &mut *val.write();
// or, be safer and use `with`
val.with_mut(|i| i.insert(1, "hi"));
sourcepub fn needs_update(&self)
pub fn needs_update(&self)
Call the inner callback to mark the originator component as dirty.
This will cause the component to be re-rendered after the current scope has ended or the current async task has been yielded through await.