#[repr(C)]
pub union sock_event_cb_t {
pub generic: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: sock_async_flags_t, arg3: *mut c_void)>,
pub tcp: sock_tcp_cb_t,
pub tcp_queue: sock_tcp_queue_cb_t,
pub udp: sock_udp_cb_t,
}
Expand description
@brief Generalized callback type
Fields§
§generic: Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: sock_async_flags_t, arg3: *mut c_void)>
@brief anything goes
tcp: sock_tcp_cb_t
< TCP callback
tcp_queue: sock_tcp_queue_cb_t
< TCP queue callback
udp: sock_udp_cb_t
< UDP callback
Trait Implementations§
Source§impl Clone for sock_event_cb_t
impl Clone for sock_event_cb_t
Source§fn clone(&self) -> sock_event_cb_t
fn clone(&self) -> sock_event_cb_t
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_event_cb_t
impl Debug for sock_event_cb_t
Source§impl Default for sock_event_cb_t
impl Default for sock_event_cb_t
impl Copy for sock_event_cb_t
Auto Trait Implementations§
impl Freeze for sock_event_cb_t
impl RefUnwindSafe for sock_event_cb_t
impl Send for sock_event_cb_t
impl Sync for sock_event_cb_t
impl Unpin for sock_event_cb_t
impl UnwindSafe for sock_event_cb_t
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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: 4 bytes