#[repr(C)]pub struct fastopen_queue {
pub rskq_rst_head: *mut request_sock,
pub rskq_rst_tail: *mut request_sock,
pub lock: spinlock_t,
pub qlen: c_int,
pub max_qlen: c_int,
pub ctx: *mut tcp_fastopen_context,
}
Fields§
§rskq_rst_head: *mut request_sock
§rskq_rst_tail: *mut request_sock
§lock: spinlock_t
§qlen: c_int
§max_qlen: c_int
§ctx: *mut tcp_fastopen_context
Trait Implementations§
Source§impl Clone for fastopen_queue
impl Clone for fastopen_queue
Source§fn clone(&self) -> fastopen_queue
fn clone(&self) -> fastopen_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 moreimpl Copy for fastopen_queue
Auto Trait Implementations§
impl Freeze for fastopen_queue
impl RefUnwindSafe for fastopen_queue
impl !Send for fastopen_queue
impl !Sync for fastopen_queue
impl Unpin for fastopen_queue
impl UnwindSafe for fastopen_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