[][src]Struct tm_rs::ffi::tm_collaboration_api

#[repr(C)]pub struct tm_collaboration_api {
    pub create: Option<unsafe extern "C" fn(*mut tm_allocator_i, *const tm_collaboration_config_t) -> *mut tm_collaboration_o>,
    pub destroy: Option<unsafe extern "C" fn(*mut tm_collaboration_o)>,
    pub status: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> i32>,
    pub is_downloading: Option<unsafe extern "C" fn(*const tm_collaboration_o, *mut u64, *mut u64) -> bool>,
    pub set_session: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *const tm_collaboration_session_i)>,
    pub session: Option<unsafe extern "C" fn(*mut tm_collaboration_o) -> *mut tm_collaboration_session_i>,
    pub disconnect: Option<unsafe extern "C" fn(*mut tm_collaboration_o)>,
    pub update: Option<unsafe extern "C" fn(*mut tm_collaboration_o)>,
    pub handle: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> *const i8>,
    pub set_handle: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *mut i8)>,
    pub host_handle: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> *const i8>,
    pub num_clients: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> u32>,
    pub client_handle: Option<unsafe extern "C" fn(*const tm_collaboration_o, u32) -> *const i8>,
    pub all_handles: Option<unsafe extern "C" fn(*const tm_collaboration_o, *mut tm_temp_allocator_i) -> *mut *const i8>,
    pub send_chat: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *const i8)>,
    pub num_chat_messages: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> u32>,
    pub chat_message: Option<unsafe extern "C" fn(*const tm_collaboration_o, u32, *mut *const i8) -> *const i8>,
    pub resynchronize_state: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *mut tm_the_truth_o)>,
    pub send_test_packages: Option<unsafe extern "C" fn(*mut tm_collaboration_o, u64, u32)>,
}

Fields

create: Option<unsafe extern "C" fn(*mut tm_allocator_i, *const tm_collaboration_config_t) -> *mut tm_collaboration_o>destroy: Option<unsafe extern "C" fn(*mut tm_collaboration_o)>status: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> i32>is_downloading: Option<unsafe extern "C" fn(*const tm_collaboration_o, *mut u64, *mut u64) -> bool>set_session: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *const tm_collaboration_session_i)>session: Option<unsafe extern "C" fn(*mut tm_collaboration_o) -> *mut tm_collaboration_session_i>disconnect: Option<unsafe extern "C" fn(*mut tm_collaboration_o)>update: Option<unsafe extern "C" fn(*mut tm_collaboration_o)>handle: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> *const i8>set_handle: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *mut i8)>host_handle: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> *const i8>num_clients: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> u32>client_handle: Option<unsafe extern "C" fn(*const tm_collaboration_o, u32) -> *const i8>all_handles: Option<unsafe extern "C" fn(*const tm_collaboration_o, *mut tm_temp_allocator_i) -> *mut *const i8>send_chat: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *const i8)>num_chat_messages: Option<unsafe extern "C" fn(*const tm_collaboration_o) -> u32>chat_message: Option<unsafe extern "C" fn(*const tm_collaboration_o, u32, *mut *const i8) -> *const i8>resynchronize_state: Option<unsafe extern "C" fn(*mut tm_collaboration_o, *mut tm_the_truth_o)>send_test_packages: Option<unsafe extern "C" fn(*mut tm_collaboration_o, u64, u32)>

Trait Implementations

impl Clone for tm_collaboration_api[src]

impl Copy for tm_collaboration_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.