Type Alias esp_idf_hal::sys::MessageBufferHandle_t

source ยท
pub type MessageBufferHandle_t = *mut StreamBufferDef_t;
Expand description

Type by which message buffers are referenced. For example, a call to xMessageBufferCreate() returns an MessageBufferHandle_t variable that can then be used as a parameter to xMessageBufferSend(), xMessageBufferReceive(), etc. Message buffer is essentially built as a stream buffer hence its handle is also set to same type as a stream buffer handle.