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 duplicate 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 moreSource§impl Debug for ReadIntegerType
impl Debug for ReadIntegerType
Source§impl PartialEq for ReadIntegerType
impl PartialEq for ReadIntegerType
impl Copy for ReadIntegerType
impl Eq for ReadIntegerType
impl StructuralPartialEq for ReadIntegerType
Auto Trait Implementations§
impl Freeze for ReadIntegerType
impl RefUnwindSafe for ReadIntegerType
impl Send for ReadIntegerType
impl Sync for ReadIntegerType
impl Unpin for ReadIntegerType
impl UnwindSafe for ReadIntegerType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more