Enum boreal_parser::ReadIntegerType
source · pub enum ReadIntegerType {
Int8,
Uint8,
Int16,
Int16BE,
Uint16,
Uint16BE,
Int32,
Int32BE,
Uint32,
Uint32BE,
}Expand description
Integer read type, see ExpressionKind::ReadInteger.
Variants§
Int8
8 bits, signed
Uint8
8 bits, unsigned
Int16
16 bits, signed
Int16BE
16 bits, signed, big-endian
Uint16
16 bits, unsigned
Uint16BE
16 bits, unsigned, big-endian
Int32
32 bits, signed
Int32BE
32 bits, signed, big-endian
Uint32
32 bits, unsigned
Uint32BE
32 bits, unsigned, big-endian
Trait Implementations§
source§impl Clone for ReadIntegerType
impl Clone for ReadIntegerType
source§fn clone(&self) -> ReadIntegerType
fn clone(&self) -> ReadIntegerType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more