#[repr(C)]pub enum PduPt {
Unum8 = 257,
Snum8 = 258,
Unum16 = 259,
Snum16 = 260,
Unum32 = 261,
Snum32 = 262,
ByteField = 263,
StructField = 264,
LongField = 265,
}
Expand description
ComParam data type
Variants§
Unum8 = 257
Unsigned 8 bit
Snum8 = 258
Signed 8 bit
Unum16 = 259
Unsigned 16 bit
Snum16 = 260
Signed 16 bit
Unum32 = 261
Unsigned 32 bit
Snum32 = 262
Signed 32 bit
ByteField = 263
Byte array
StructField = 264
Structure
LongField = 265
Array of 32bit values
Trait Implementations§
Source§impl Ord for PduPt
impl Ord for PduPt
Source§impl PartialOrd for PduPt
impl PartialOrd for PduPt
impl Copy for PduPt
impl Eq for PduPt
impl StructuralPartialEq for PduPt
Auto Trait Implementations§
impl Freeze for PduPt
impl RefUnwindSafe for PduPt
impl Send for PduPt
impl Sync for PduPt
impl Unpin for PduPt
impl UnwindSafe for PduPt
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