[][src]Struct tm_sys::ffi::tm_os_socket_api

#[repr(C)]pub struct tm_os_socket_api {
    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

impl Clone for tm_os_socket_api[src]

impl Copy for tm_os_socket_api[src]

impl Debug for tm_os_socket_api[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.