#[repr(C)]pub struct pdpStatStruct {
pub next: *mut pdpStatStruct,
pub pdpId: c_int,
pub mac: [c_uchar; 6],
pub port: c_ushort,
pub rcvdData: c_uint,
}Expand description
PDP status structure
Fields§
§next: *mut pdpStatStructPointer to next PDP structure in list
pdpId: c_intpdp ID
mac: [c_uchar; 6]MAC address
port: c_ushortPort
rcvdData: c_uintBytes received
Trait Implementations§
Source§impl Clone for pdpStatStruct
impl Clone for pdpStatStruct
Source§impl Debug for pdpStatStruct
impl Debug for pdpStatStruct
impl Copy for pdpStatStruct
Auto Trait Implementations§
impl Freeze for pdpStatStruct
impl RefUnwindSafe for pdpStatStruct
impl !Send for pdpStatStruct
impl !Sync for pdpStatStruct
impl Unpin for pdpStatStruct
impl UnsafeUnpin for pdpStatStruct
impl UnwindSafe for pdpStatStruct
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