[][src]Struct tm_rs::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(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

impl Clone for tm_os_socket_api[src]

impl Copy for tm_os_socket_api[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Any for T where
    T: Any
[src]

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

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

impl<T> CloneAny for T where
    T: Clone + Any
[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.