[][src]Struct esp_idf_bindgen::pbuf_rom

#[repr(C)]pub struct pbuf_rom {
    pub next: *mut pbuf,
    pub payload: *const c_void,
}

Helper struct for const-correctness only. The only meaning of this one is to provide a const payload pointer for PBUF_ROM type.

Fields

next: *mut pbuf

next pbuf in singly linked pbuf chain

payload: *const c_void

pointer to the actual data in the buffer

Trait Implementations

impl Clone for pbuf_rom[src]

impl Copy for pbuf_rom[src]

impl Debug for pbuf_rom[src]

Auto Trait Implementations

impl !Send for pbuf_rom

impl !Sync for pbuf_rom

impl Unpin for pbuf_rom

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, 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.