pub fn set_deferred<T: 'static>(signal: &Signal<T>, value: T)Expand description
Schedule a Signal::set call for the next executor flush.
Safe to call from inside Drop — the actual signal.set(value) is
deferred to a subsequent flush, avoiding re-entrant borrow panics.