Closed partim closed 8 months ago
This PR adds functions and trait implementations to convert Serial to and from a [u8; 20].
Serial
[u8; 20]
Because serials are unsigned, the left-most bit must not be set which means conversion from an array can fail.
This PR adds functions and trait implementations to convert
Serial
to and from a[u8; 20]
.Because serials are unsigned, the left-most bit must not be set which means conversion from an array can fail.