#[repr(C)]pub struct janus_eventhandler {
pub init: unsafe extern "C" fn(config_path: *const c_char) -> c_int,
pub destroy: unsafe extern "C" fn(),
pub get_api_compatibility: unsafe extern "C" fn() -> c_int,
pub get_version: unsafe extern "C" fn() -> c_int,
pub get_version_string: unsafe extern "C" fn() -> *const c_char,
pub get_description: unsafe extern "C" fn() -> *const c_char,
pub get_name: unsafe extern "C" fn() -> *const c_char,
pub get_author: unsafe extern "C" fn() -> *const c_char,
pub get_package: unsafe extern "C" fn() -> *const c_char,
pub incoming_event: unsafe extern "C" fn(event: *mut json_t),
pub handle_request: unsafe extern "C" fn(request: *mut json_t) -> *mut json_t,
pub events_mask: c_uint,
}Fields§
§init: unsafe extern "C" fn(config_path: *const c_char) -> c_int§destroy: unsafe extern "C" fn()§get_api_compatibility: unsafe extern "C" fn() -> c_int§get_version: unsafe extern "C" fn() -> c_int§get_version_string: unsafe extern "C" fn() -> *const c_char§get_description: unsafe extern "C" fn() -> *const c_char§get_name: unsafe extern "C" fn() -> *const c_char§get_package: unsafe extern "C" fn() -> *const c_char§incoming_event: unsafe extern "C" fn(event: *mut json_t)§handle_request: unsafe extern "C" fn(request: *mut json_t) -> *mut json_t§events_mask: c_uintTrait Implementations§
Auto Trait Implementations§
impl Freeze for janus_eventhandler
impl RefUnwindSafe for janus_eventhandler
impl Send for janus_eventhandler
impl Sync for janus_eventhandler
impl Unpin for janus_eventhandler
impl UnwindSafe for janus_eventhandler
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