#[repr(u8)]pub enum OperandDataType {
Show 19 variants
Byte = 0,
Word = 1,
DWord = 2,
Float = 3,
Double = 4,
TByte = 5,
PackReal = 6,
QWord = 7,
Byte16 = 8,
Code = 9,
Void = 10,
FWord = 11,
Bitfield = 12,
String = 13,
Unicode = 14,
LongDouble = 15,
Byte32 = 16,
Byte64 = 17,
Half = 18,
}
Variants§
Byte = 0
Word = 1
DWord = 2
Float = 3
Double = 4
TByte = 5
PackReal = 6
QWord = 7
Byte16 = 8
Code = 9
Void = 10
FWord = 11
Bitfield = 12
String = 13
Unicode = 14
LongDouble = 15
Byte32 = 16
Byte64 = 17
Half = 18
Trait Implementations§
Source§impl Clone for OperandDataType
impl Clone for OperandDataType
Source§fn clone(&self) -> OperandDataType
fn clone(&self) -> OperandDataType
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 moreSource§impl Debug for OperandDataType
impl Debug for OperandDataType
Source§impl Hash for OperandDataType
impl Hash for OperandDataType
Source§impl Ord for OperandDataType
impl Ord for OperandDataType
Source§fn cmp(&self, other: &OperandDataType) -> Ordering
fn cmp(&self, other: &OperandDataType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OperandDataType
impl PartialEq for OperandDataType
Source§impl PartialOrd for OperandDataType
impl PartialOrd for OperandDataType
impl Copy for OperandDataType
impl Eq for OperandDataType
impl StructuralPartialEq for OperandDataType
Auto Trait Implementations§
impl Freeze for OperandDataType
impl RefUnwindSafe for OperandDataType
impl Send for OperandDataType
impl Sync for OperandDataType
impl Unpin for OperandDataType
impl UnwindSafe for OperandDataType
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