StaticfromAdd a pending request where we only know where to collect from.
Port of PendingRequests::add_collect_only() from group_record.rs lines 90-99.
Add a pending request where we know where to send AND where to collect.
Port of PendingRequests::add_send_and_collect() from group_record.rs lines 103-115.
Add a pending request where we only know where to send.
Port of PendingRequests::add_send_only() from group_record.rs lines 118-127.
Check if there are no pending requests.
Port of PendingRequests::is_empty() from group_record.rs line 129.
Get the number of pending requests.
Port of PendingRequests::len() from group_record.rs line 165.
Iterate over (participant, collectFromArid) pairs.
Port of PendingRequests::iter_collect() from group_record.rs lines 132-138.
Iterate over (participant, sendToArid) pairs.
Port of PendingRequests::iter_send() from group_record.rs lines 141-150.
Iterate over full (participant, sendToArid, collectFromArid) tuples.
Port of PendingRequests::iter_full() from group_record.rs lines 153-163.
Tracks pending communication with participants (coordinator-side).
Port of
struct PendingRequestsfrom group_record.rs lines 71-75.