Helper: Encode the value and return a Vec.
(self)
| 25 | |
| 26 | /// Helper: Encode the value and return a Vec. |
| 27 | fn encode_fixed_vec(self) -> Vec<u8> { |
| 28 | self.encode_fixed_light().as_ref().to_vec() |
| 29 | } |
| 30 | |
| 31 | /// integer-encoding-rs always emits and receives little-endian integers (converting implicitly |
| 32 | /// on big-endian machines). If you receive a big-endian integer, and would like it to be |
no outgoing calls