#[repr(C)]pub struct tm_collaboration_api {Show 19 fields
pub create: Option<unsafe extern "C" fn(a: *mut tm_allocator_i, config: *const tm_collaboration_config_t) -> *mut tm_collaboration_o>,
pub destroy: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o)>,
pub status: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> tm_collaboration_status>,
pub is_downloading: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, bytes: *mut u64, total: *mut u64) -> bool>,
pub set_session: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, session: *const tm_collaboration_session_i)>,
pub session: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o) -> *mut tm_collaboration_session_i>,
pub disconnect: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o)>,
pub update: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o)>,
pub handle: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> *const c_char>,
pub set_handle: Option<unsafe extern "C" fn(c: *mut tm_collaboration_o, handle: *mut c_char)>,
pub host_handle: Option<unsafe extern "C" fn(c: *const tm_collaboration_o) -> *const c_char>,
pub num_clients: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> u32>,
pub client_handle: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, i: u32) -> *const c_char>,
pub all_handles: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, ta: *mut tm_temp_allocator_i) -> *mut *const c_char>,
pub send_chat: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, msg: *const c_char)>,
pub num_chat_messages: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> u32>,
pub chat_message: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, i: u32, sender: *mut *const c_char) -> *const c_char>,
pub resynchronize_state: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, tt: *mut tm_the_truth_o)>,
pub send_test_packages: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, size: u64, num: u32)>,
}Fields§
§create: Option<unsafe extern "C" fn(a: *mut tm_allocator_i, config: *const tm_collaboration_config_t) -> *mut tm_collaboration_o>§destroy: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o)>§status: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> tm_collaboration_status>§is_downloading: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, bytes: *mut u64, total: *mut u64) -> bool>§set_session: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, session: *const tm_collaboration_session_i)>§session: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o) -> *mut tm_collaboration_session_i>§disconnect: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o)>§update: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o)>§handle: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> *const c_char>§set_handle: Option<unsafe extern "C" fn(c: *mut tm_collaboration_o, handle: *mut c_char)>§host_handle: Option<unsafe extern "C" fn(c: *const tm_collaboration_o) -> *const c_char>§num_clients: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> u32>§client_handle: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, i: u32) -> *const c_char>§all_handles: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, ta: *mut tm_temp_allocator_i) -> *mut *const c_char>§send_chat: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, msg: *const c_char)>§num_chat_messages: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o) -> u32>§chat_message: Option<unsafe extern "C" fn(coll: *const tm_collaboration_o, i: u32, sender: *mut *const c_char) -> *const c_char>§resynchronize_state: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, tt: *mut tm_the_truth_o)>§send_test_packages: Option<unsafe extern "C" fn(coll: *mut tm_collaboration_o, size: u64, num: u32)>Trait Implementations§
Source§impl Clone for tm_collaboration_api
impl Clone for tm_collaboration_api
Source§fn clone(&self) -> tm_collaboration_api
fn clone(&self) -> tm_collaboration_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_collaboration_api
Auto Trait Implementations§
impl Freeze for tm_collaboration_api
impl RefUnwindSafe for tm_collaboration_api
impl Send for tm_collaboration_api
impl Sync for tm_collaboration_api
impl Unpin for tm_collaboration_api
impl UnwindSafe for tm_collaboration_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