#[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(type_: tm_os_socket_type) -> tm_socket_o>,
pub set_option: Option<unsafe extern "C" fn(socket: tm_socket_o, option: tm_os_socket_option, enabled: bool)>,
pub is_valid: Option<unsafe extern "C" fn(socket: tm_socket_o) -> bool>,
pub bind: Option<unsafe extern "C" fn(socket: tm_socket_o, address: tm_socket_address_t) -> bool>,
pub getsockname: Option<unsafe extern "C" fn(socket: tm_socket_o, address: *mut tm_socket_address_t) -> bool>,
pub listen: Option<unsafe extern "C" fn(socket: tm_socket_o, queue_size: u32) -> bool>,
pub accept: Option<unsafe extern "C" fn(socket: tm_socket_o, address: *mut tm_socket_address_t) -> tm_socket_o>,
pub connect: Option<unsafe extern "C" fn(socket: tm_socket_o, target: tm_socket_address_t) -> tm_os_socket_connect>,
pub send: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *const c_void, size: u32) -> i32>,
pub recv: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *mut c_void, size: u32) -> i32>,
pub sendto: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *const c_void, size: u32, target: tm_socket_address_t) -> i32>,
pub recvfrom: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *mut c_void, size: u32, source: *mut tm_socket_address_t) -> i32>,
pub close: Option<unsafe extern "C" fn(socket: tm_socket_o) -> bool>,
pub getaddrinfo: Option<unsafe extern "C" fn(name: *const c_char, service: *const c_char, addresses: *mut tm_socket_address_t, size: u32) -> u32>,
pub getaddrinfo_async: Option<unsafe extern "C" fn(name: *const c_char, service: *const c_char) -> *mut c_void>,
pub getaddrinfo_result: Option<unsafe extern "C" fn(query: *mut c_void, addresses: *mut tm_socket_address_t, count: *mut u32) -> tm_os_socket_getaddrinfo>,
}Fields§
§init: Option<unsafe extern "C" fn()>§shutdown: Option<unsafe extern "C" fn()>§socket: Option<unsafe extern "C" fn(type_: tm_os_socket_type) -> tm_socket_o>§set_option: Option<unsafe extern "C" fn(socket: tm_socket_o, option: tm_os_socket_option, enabled: bool)>§is_valid: Option<unsafe extern "C" fn(socket: tm_socket_o) -> bool>§bind: Option<unsafe extern "C" fn(socket: tm_socket_o, address: tm_socket_address_t) -> bool>§getsockname: Option<unsafe extern "C" fn(socket: tm_socket_o, address: *mut tm_socket_address_t) -> bool>§listen: Option<unsafe extern "C" fn(socket: tm_socket_o, queue_size: u32) -> bool>§accept: Option<unsafe extern "C" fn(socket: tm_socket_o, address: *mut tm_socket_address_t) -> tm_socket_o>§connect: Option<unsafe extern "C" fn(socket: tm_socket_o, target: tm_socket_address_t) -> tm_os_socket_connect>§send: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *const c_void, size: u32) -> i32>§recv: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *mut c_void, size: u32) -> i32>§sendto: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *const c_void, size: u32, target: tm_socket_address_t) -> i32>§recvfrom: Option<unsafe extern "C" fn(socket: tm_socket_o, buffer: *mut c_void, size: u32, source: *mut tm_socket_address_t) -> i32>§close: Option<unsafe extern "C" fn(socket: tm_socket_o) -> bool>§getaddrinfo: Option<unsafe extern "C" fn(name: *const c_char, service: *const c_char, addresses: *mut tm_socket_address_t, size: u32) -> u32>§getaddrinfo_async: Option<unsafe extern "C" fn(name: *const c_char, service: *const c_char) -> *mut c_void>§getaddrinfo_result: Option<unsafe extern "C" fn(query: *mut c_void, addresses: *mut tm_socket_address_t, count: *mut u32) -> tm_os_socket_getaddrinfo>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 UnsafeUnpin 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