Enum context_rs::well_known::SignalOrComplete
source · Available on crate features
time
and std
only.Expand description
Enum state returned by run_until_signal
.
Variants§
ShutdownSignal(F)
Indicates there was a signal raised during the duration of the future. It can be resumed if necessary using the given value.
Completed(F::Output)
The future completed without any signal interuptions.