pub struct use_gen_signal_with<F>(pub F);
Tuple Fields§
§0: F
Trait Implementations§
Source§impl<T: 'static, F: FnOnce() -> T> IntoHook for UseGenSignalWith<F>
impl<T: 'static, F: FnOnce() -> T> IntoHook for UseGenSignalWith<F>
Source§impl<T: 'static, F: FnOnce() -> T> UpdateHook for UseGenSignalWith<F>
impl<T: 'static, F: FnOnce() -> T> UpdateHook for UseGenSignalWith<F>
fn update_hook(self, _hook: Pin<&mut Self::Hook>)
Source§impl<T: 'static, F: FnOnce() -> T> UpdateHookUninitialized for UseGenSignalWith<F>
impl<T: 'static, F: FnOnce() -> T> UpdateHookUninitialized for UseGenSignalWith<F>
type Uninitialized = UninitializedHook<GenSignalHook<T>>
fn h( self, hook: Pin<&mut Self::Uninitialized>, ) -> <Self::Hook as HookValue<'_>>::Value
Auto Trait Implementations§
impl<F> Freeze for UseGenSignalWith<F>where
F: Freeze,
impl<F> RefUnwindSafe for UseGenSignalWith<F>where
F: RefUnwindSafe,
impl<F> Send for UseGenSignalWith<F>where
F: Send,
impl<F> Sync for UseGenSignalWith<F>where
F: Sync,
impl<F> Unpin for UseGenSignalWith<F>where
F: Unpin,
impl<F> UnwindSafe for UseGenSignalWith<F>where
F: UnwindSafe,
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