[][src]Struct pspsdk_sys::sdk::pdpStatStruct

#[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,
}

PDP status structure

Fields

next: *mut pdpStatStruct

Pointer to next PDP structure in list

pdpId: c_int

pdp ID

mac: [c_uchar; 6]

MAC address

port: c_ushort

Port

rcvdData: c_uint

Bytes received

Trait Implementations

impl Clone for pdpStatStruct[src]

impl Copy for pdpStatStruct[src]

impl Debug for pdpStatStruct[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.