#[repr(C)]pub struct PduDataItem {
pub item_type: PduIt,
pub p_data: *mut c_void,
}
Expand description
Generic IOCTL type structure
Fields§
§item_type: PduIt
IOCTL Item type
p_data: *mut c_void
IOCTL data structure pointer
Trait Implementations§
Source§impl Clone for PduDataItem
impl Clone for PduDataItem
Source§fn clone(&self) -> PduDataItem
fn clone(&self) -> PduDataItem
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 PduDataItem
impl Debug for PduDataItem
Source§impl Ord for PduDataItem
impl Ord for PduDataItem
Source§fn cmp(&self, other: &PduDataItem) -> Ordering
fn cmp(&self, other: &PduDataItem) -> 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 PduDataItem
impl PartialEq for PduDataItem
Source§impl PartialOrd for PduDataItem
impl PartialOrd for PduDataItem
impl Copy for PduDataItem
impl Eq for PduDataItem
impl StructuralPartialEq for PduDataItem
Auto Trait Implementations§
impl Freeze for PduDataItem
impl RefUnwindSafe for PduDataItem
impl !Send for PduDataItem
impl !Sync for PduDataItem
impl Unpin for PduDataItem
impl UnwindSafe for PduDataItem
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