Struct esp_idf_sys::pbuf

source ·
#[repr(C)]
pub struct pbuf { pub next: *mut pbuf, pub payload: *mut c_void, pub tot_len: u16_t, pub len: u16_t, pub type_internal: u8_t, pub flags: u8_t, pub ref_: u8_t, pub if_idx: u8_t, }
Expand description

Main packet buffer struct

Fields§

§next: *mut pbuf

next pbuf in singly linked pbuf chain

§payload: *mut c_void

pointer to the actual data in the buffer

§tot_len: u16_t

total length of this buffer and all next buffers in chain belonging to the same packet.

For non-queue packet chains this is the invariant: p->tot_len == p->len + (p->next? p->next->tot_len: 0)

§len: u16_t

length of this buffer

§type_internal: u8_t

a bit field indicating pbuf type and allocation sources (see PBUF_TYPE_FLAG_, PBUF_ALLOC_FLAG_ and PBUF_TYPE_ALLOC_SRC_MASK)

§flags: u8_t

misc flags

§ref_: u8_t

the reference count always equals the number of pointers that refer to this pbuf. This can be pointers from an application, the stack itself, or pbuf->next pointers from a chain.

§if_idx: u8_t

For incoming packets, this contains the input netif’s index

Trait Implementations§

source§

impl Clone for pbuf

source§

fn clone(&self) -> pbuf

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for pbuf

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for pbuf

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for pbuf

Auto Trait Implementations§

§

impl RefUnwindSafe for pbuf

§

impl !Send for pbuf

§

impl !Sync for pbuf

§

impl Unpin for pbuf

§

impl UnwindSafe for pbuf

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.