type DecideSignal = Option<(ViewNumber, Option<Arc<CertificatePair<SeqTypes>>>)>;Expand description
Latest decided view and its (optional) deciding QC, sent from the event loop to the background
decide processor. None is the initial/no-op value of the watch channel.
Aliased Type§
enum DecideSignal {
None,
Some((ViewNumber, Option<Arc<CertificatePair<SeqTypes>>>)),
}Variants§
None
No value.
Some((ViewNumber, Option<Arc<CertificatePair<SeqTypes>>>))
Some value of type T.