riot_sys

Type Alias sock_tcp_queue_t

Source
pub type sock_tcp_queue_t = sock_tcp_queue;
Expand description

@brief Transmission control block queue.

Aliased Type§

struct sock_tcp_queue_t {
    pub lock: mutex_t,
    pub tcbs: *mut sock_tcp,
    pub tcbs_len: u32,
}

Fields§

§lock: mutex_t

< Mutex for access synchronization

§tcbs: *mut sock_tcp

< Pointer to TCB sequence

§tcbs_len: u32

< Number of TCBs behind member tcbs

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 sock_tcp_queue

Source§

fn clone(&self) -> sock_tcp_queue

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 sock_tcp_queue

Source§

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

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

impl Default for sock_tcp_queue

Source§

fn default() -> Self

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

impl Copy for sock_tcp_queue