Struct riot_sys::sock_tcp_queue
source · #[repr(C)]pub struct sock_tcp_queue {
pub lock: mutex_t,
pub tcbs: *mut gnrc_tcp_tcb_t,
pub tcbs_len: size_t,
}
Expand description
@brief Transmission control block queue.
Fields§
§lock: mutex_t
< Mutex for access synchronization
tcbs: *mut gnrc_tcp_tcb_t
< Pointer to TCB sequence
tcbs_len: size_t
< Number of TCBs behind member tcbs
Trait Implementations§
source§impl Clone for sock_tcp_queue
impl Clone for sock_tcp_queue
source§fn clone(&self) -> sock_tcp_queue
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for sock_tcp_queue
impl Debug for sock_tcp_queue
source§impl Default for sock_tcp_queue
impl Default for sock_tcp_queue
impl Copy for sock_tcp_queue
Auto Trait Implementations§
impl RefUnwindSafe for sock_tcp_queue
impl !Send for sock_tcp_queue
impl !Sync for sock_tcp_queue
impl Unpin for sock_tcp_queue
impl UnwindSafe for sock_tcp_queue
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more