pub struct SignalField<M, T>{ /* private fields */ }Implementations§
Trait Implementations§
Source§impl<M, T> Clone for SignalField<M, T>
impl<M, T> Clone for SignalField<M, T>
Source§impl<M, T> Field for SignalField<M, T>
impl<M, T> Field for SignalField<M, T>
Source§impl<M, T> SignalGet for SignalField<M, T>
impl<M, T> SignalGet for SignalField<M, T>
Source§impl<M, T> SignalGetUntracked for SignalField<M, T>
impl<M, T> SignalGetUntracked for SignalField<M, T>
Source§fn get_untracked(&self) -> Self::Value
fn get_untracked(&self) -> Self::Value
Gets the signal’s value without creating a dependency on the
current scope. Read more
Source§impl<M, T> SignalWith for SignalField<M, T>
impl<M, T> SignalWith for SignalField<M, T>
Source§impl<M, T> SignalWithUntracked for SignalField<M, T>
impl<M, T> SignalWithUntracked for SignalField<M, T>
impl<M, T> Copy for SignalField<M, T>
Auto Trait Implementations§
impl<M, T> Freeze for SignalField<M, T>
impl<M, T> !RefUnwindSafe for SignalField<M, T>
impl<M, T> !Send for SignalField<M, T>
impl<M, T> !Sync for SignalField<M, T>
impl<M, T> Unpin for SignalField<M, T>
impl<M, T> !UnwindSafe for SignalField<M, 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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more