#[repr(C)]pub struct tm_os_socket_api {Show 18 fields
pub init: Option<unsafe extern "C" fn()>,
pub shutdown: Option<unsafe extern "C" fn()>,
pub socket: Option<unsafe extern "C" fn(i32) -> tm_socket_o>,
pub set_option: Option<unsafe extern "C" fn(tm_socket_o, i32, bool)>,
pub is_valid: Option<unsafe extern "C" fn(tm_socket_o) -> bool>,
pub bind: Option<unsafe extern "C" fn(tm_socket_o, tm_socket_address_t) -> bool>,
pub getsockname: Option<unsafe extern "C" fn(tm_socket_o, *mut tm_socket_address_t) -> bool>,
pub listen: Option<unsafe extern "C" fn(tm_socket_o, u32) -> bool>,
pub accept: Option<unsafe extern "C" fn(tm_socket_o, *mut tm_socket_address_t) -> tm_socket_o>,
pub connect: Option<unsafe extern "C" fn(tm_socket_o, tm_socket_address_t) -> i32>,
pub send: Option<unsafe extern "C" fn(tm_socket_o, *const c_void, u32) -> i32>,
pub recv: Option<unsafe extern "C" fn(tm_socket_o, *mut c_void, u32) -> i32>,
pub sendto: Option<unsafe extern "C" fn(tm_socket_o, *const c_void, u32, tm_socket_address_t) -> i32>,
pub recvfrom: Option<unsafe extern "C" fn(tm_socket_o, *mut c_void, u32, *mut tm_socket_address_t) -> i32>,
pub close: Option<unsafe extern "C" fn(tm_socket_o) -> bool>,
pub getaddrinfo: Option<unsafe extern "C" fn(*const i8, *const i8, *mut tm_socket_address_t, u32) -> u32>,
pub getaddrinfo_async: Option<unsafe extern "C" fn(*const i8, *const i8) -> *mut c_void>,
pub getaddrinfo_result: Option<unsafe extern "C" fn(*mut c_void, *mut tm_socket_address_t, *mut u32) -> i32>,
}Fields§
§init: Option<unsafe extern "C" fn()>§shutdown: Option<unsafe extern "C" fn()>§socket: Option<unsafe extern "C" fn(i32) -> tm_socket_o>§set_option: Option<unsafe extern "C" fn(tm_socket_o, i32, bool)>§is_valid: Option<unsafe extern "C" fn(tm_socket_o) -> bool>§bind: Option<unsafe extern "C" fn(tm_socket_o, tm_socket_address_t) -> bool>§getsockname: Option<unsafe extern "C" fn(tm_socket_o, *mut tm_socket_address_t) -> bool>§listen: Option<unsafe extern "C" fn(tm_socket_o, u32) -> bool>§accept: Option<unsafe extern "C" fn(tm_socket_o, *mut tm_socket_address_t) -> tm_socket_o>§connect: Option<unsafe extern "C" fn(tm_socket_o, tm_socket_address_t) -> i32>§send: Option<unsafe extern "C" fn(tm_socket_o, *const c_void, u32) -> i32>§recv: Option<unsafe extern "C" fn(tm_socket_o, *mut c_void, u32) -> i32>§sendto: Option<unsafe extern "C" fn(tm_socket_o, *const c_void, u32, tm_socket_address_t) -> i32>§recvfrom: Option<unsafe extern "C" fn(tm_socket_o, *mut c_void, u32, *mut tm_socket_address_t) -> i32>§close: Option<unsafe extern "C" fn(tm_socket_o) -> bool>§getaddrinfo: Option<unsafe extern "C" fn(*const i8, *const i8, *mut tm_socket_address_t, u32) -> u32>§getaddrinfo_async: Option<unsafe extern "C" fn(*const i8, *const i8) -> *mut c_void>§getaddrinfo_result: Option<unsafe extern "C" fn(*mut c_void, *mut tm_socket_address_t, *mut u32) -> i32>Trait Implementations§
Source§impl Clone for tm_os_socket_api
impl Clone for tm_os_socket_api
Source§fn clone(&self) -> tm_os_socket_api
fn clone(&self) -> tm_os_socket_api
Returns a duplicate 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 tm_os_socket_api
Auto Trait Implementations§
impl Freeze for tm_os_socket_api
impl RefUnwindSafe for tm_os_socket_api
impl Send for tm_os_socket_api
impl Sync for tm_os_socket_api
impl Unpin for tm_os_socket_api
impl UnwindSafe for tm_os_socket_api
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