Struct parity_wasm::elements::VarUint64
[−]
[src]
pub struct VarUint64(_);
Unsigned variable-length integer, limited to 64 bits, represented by at most 9 bytes that may contain padding 0x80 bytes.
Trait Implementations
impl Debug for VarUint64[src]
impl Copy for VarUint64[src]
impl Clone for VarUint64[src]
fn clone(&self) -> VarUint64[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Deserialize for VarUint64[src]
type Error = Error
Serialization error produced by deserialization routine.
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, Self::Error>[src]
Deserialize type from serial i/o
impl Serialize for VarUint64[src]
type Error = Error
Serialization error produced by serialization routine.
fn serialize<W: Write>(self, writer: &mut W) -> Result<(), Self::Error>[src]
Serialize type to serial i/o