Host & Client force randomness on each other.
Updated Reserved entry order. Made DataType ID changes easier in future (this MAY NOT happen again once in use).
This commit is contained in:
parent
687e6f9642
commit
f4118f28ba
25 changed files with 1032 additions and 667 deletions
|
|
@ -1,6 +1,8 @@
|
|||
// try_new returns Result<Self, ()> deliberately: the only failure mode is "id
|
||||
// is in the reserved range", which carries no extra information worth an error
|
||||
// type. The unit error is the intended API.
|
||||
/*
|
||||
* try_new returns Result<Self, ()> deliberately: the only failure mode is "id
|
||||
* is in the reserved range", which carries no extra information worth an error
|
||||
* type. The unit error is the intended API.
|
||||
*/
|
||||
#![allow(clippy::result_unit_err)]
|
||||
|
||||
pub const INTERNAL_COMM_RESERVED: std::ops::Range<u16> = 0..32;
|
||||
|
|
|
|||
Loading…
Reference in a new issue