riot_sys

Type Alias iolist_t

Source
pub type iolist_t = iolist;
Expand description

@brief iolist structure definition

Aliased Type§

struct iolist_t {
    pub iol_next: *mut iolist,
    pub iol_base: *mut c_void,
    pub iol_len: u32,
}

Fields§

§iol_next: *mut iolist

< ptr to next list entry

§iol_base: *mut c_void

< ptr to this list entries data

§iol_len: u32

< size of data pointet to by ptr

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 12 bytes

Trait Implementations

Source§

impl Clone for iolist

Source§

fn clone(&self) -> iolist

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for iolist

Source§

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

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

impl Default for iolist

Source§

fn default() -> Self

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

impl Copy for iolist