Struct ordered_varint::Unsigned
source · [−]pub struct Unsigned(_);Expand description
An unsigned integer value
This type encodes values in the range 0..2.pow(124) by using the first 4
bits to denote an unsigned byte length. This length ranges from 0..=15.
The remaining 4 bits of the first byte and any additional bytes are then
used to store the integer in big-endian encoding.
Trait Implementations
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Encodes self into destination, returning the number of bytes written upon success.
Decodes a variable length value from source.
Encodes self into a new Vec<u8>.
Auto Trait Implementations
impl RefUnwindSafe for Unsigned
impl UnwindSafe for Unsigned
Blanket Implementations
Mutably borrows from an owned value. Read more