Struct dioxus_hooks::computed::Selector
source · pub struct Selector<T, I> { /* private fields */ }
Expand description
Selector state is state that is derived from tracked state
Whenever the tracked state changes, the Selector state will be updated and any components reading from it will be rerun
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T, I> !RefUnwindSafe for Selector<T, I>
impl<T, I> !Send for Selector<T, I>
impl<T, I> !Sync for Selector<T, I>
impl<T, I> Unpin for Selector<T, I>
impl<T, I> !UnwindSafe for Selector<T, I>
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
Mutably borrows from an owned value. Read more