#[repr(C)]pub struct ParamItem {
pub item_type: PduIt,
pub com_param_id: u32,
pub com_param_data_type: PduPt,
pub com_param_class: PduPc,
pub p_com_param_data: *mut c_void,
}
Expand description
ComParam data information
Fields§
§item_type: PduIt
Item type
com_param_id: u32
Com param ID
com_param_data_type: PduPt
Com param data type
com_param_class: PduPc
Com param class type
p_com_param_data: *mut c_void
Pointer to data of ComParam (of type specified in ParamItem::com_param_class)
Trait Implementations§
Source§impl Ord for ParamItem
impl Ord for ParamItem
Source§impl PartialOrd for ParamItem
impl PartialOrd for ParamItem
impl Copy for ParamItem
impl Eq for ParamItem
impl StructuralPartialEq for ParamItem
Auto Trait Implementations§
impl Freeze for ParamItem
impl RefUnwindSafe for ParamItem
impl !Send for ParamItem
impl !Sync for ParamItem
impl Unpin for ParamItem
impl UnwindSafe for ParamItem
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