[][src]Struct esp_idf_bindgen::pbuf_custom

#[repr(C)]pub struct pbuf_custom {
    pub pbuf: pbuf,
    pub custom_free_function: pbuf_free_custom_fn,
}

A custom pbuf: like a pbuf, but following a function pointer to free it.

Fields

pbuf: pbuf

The actual pbuf

custom_free_function: pbuf_free_custom_fn

This function is called when pbuf_free deallocates this pbuf(_custom)

Trait Implementations

impl Clone for pbuf_custom[src]

impl Copy for pbuf_custom[src]

impl Debug for pbuf_custom[src]

Auto Trait Implementations

impl !Send for pbuf_custom

impl !Sync for pbuf_custom

impl Unpin for pbuf_custom

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.