You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would need to add the following the Helpers trait: fn encodeU8(Bytes, u8) -> Bytes, fn encodeU16(Bytes, u16) -> Bytes ... to the Bytes type (these would append to the bytes object).
We would need to also add fn decodeU8(Bytes) -> (Bytes, u8, bool), ... - these would return the decoded value and the remaining Bytes, and a success flag.
The text was updated successfully, but these errors were encountered:
Depends on #135
We would need to add the following the Helpers trait:
fn encodeU8(Bytes, u8) -> Bytes
,fn encodeU16(Bytes, u16) -> Bytes
... to the Bytes type (these would append to the bytes object).We would need to also add
fn decodeU8(Bytes) -> (Bytes, u8, bool)
, ... - these would return the decoded value and the remaining Bytes, and a success flag.The text was updated successfully, but these errors were encountered: