[−][src]Struct tm_sys::ffi::tm_os_socket_api
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]
pub fn clone(&self) -> tm_os_socket_api[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for tm_os_socket_api[src]
impl Debug for tm_os_socket_api[src]
Auto Trait Implementations
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,