core/upgrade/: Add ReadyUpgrade (#2855)

This commit is contained in:
Thomas Eizinger
2022-09-07 17:08:23 +10:00
committed by GitHub
parent 8644c65a22
commit 2eca38cca0
5 changed files with 91 additions and 41 deletions

View File

@ -65,6 +65,7 @@ mod from_fn;
mod map;
mod optional;
mod pending;
mod ready;
mod select;
mod transfer;
@ -79,6 +80,7 @@ pub use self::{
map::{MapInboundUpgrade, MapInboundUpgradeErr, MapOutboundUpgrade, MapOutboundUpgradeErr},
optional::OptionalUpgrade,
pending::PendingUpgrade,
ready::ReadyUpgrade,
select::SelectUpgrade,
transfer::{read_length_prefixed, read_varint, write_length_prefixed, write_varint},
};