Type Alias serde_amqp::primitives::Uint

source ·
pub type Uint = u32;
Expand description

Integer in the range 0 to 2^32-1 inclusive

encoding code = 0x70, category = fixed, width = 4 label = “32-bit unsigned integer in network byte order” (AKA. Big-Endian, rust uses BigEndian by default)

encoding name = “smalluint”, encoding code = 0x52 category = fixed, width = 1 label = “unsigned integer value in the range 0 to 255 inclusive”

encoding name = “uint0”, encoding code = 0x43 category = fixed, width = 0 label = “the uint value 0”