pub struct MutableSignal<V> { /* private fields */ }Expand description
A wrapper for the mutable half of a signal.
This is used by code generation of the #[template] attribute with the
#[signal] mut signal: XSignal<T> syntax.
Implementations§
Trait Implementations§
Source§impl<V> Clone for MutableSignal<V>
impl<V> Clone for MutableSignal<V>
Source§impl<V> From<&XSignal<V>> for MutableSignal<V>
impl<V> From<&XSignal<V>> for MutableSignal<V>
Auto Trait Implementations§
impl<V> Freeze for MutableSignal<V>
impl<V> RefUnwindSafe for MutableSignal<V>
impl<V> Send for MutableSignal<V>where
V: Send,
impl<V> Sync for MutableSignal<V>where
V: Sync,
impl<V> Unpin for MutableSignal<V>
impl<V> UnwindSafe for MutableSignal<V>
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