#[repr(C)]pub struct EventHandler {
pub init: unsafe extern "C" fn(*const i8) -> i32,
pub destroy: unsafe extern "C" fn(),
pub get_api_compatibility: unsafe extern "C" fn() -> i32,
pub get_version: unsafe extern "C" fn() -> i32,
pub get_version_string: unsafe extern "C" fn() -> *const i8,
pub get_description: unsafe extern "C" fn() -> *const i8,
pub get_name: unsafe extern "C" fn() -> *const i8,
pub get_author: unsafe extern "C" fn() -> *const i8,
pub get_package: unsafe extern "C" fn() -> *const i8,
pub incoming_event: unsafe extern "C" fn(*mut json_t),
pub handle_request: unsafe extern "C" fn(*mut json_t) -> *mut json_t,
pub events_mask: u32,
}
Fields§
§init: unsafe extern "C" fn(*const i8) -> i32
§destroy: unsafe extern "C" fn()
§get_api_compatibility: unsafe extern "C" fn() -> i32
§get_version: unsafe extern "C" fn() -> i32
§get_version_string: unsafe extern "C" fn() -> *const i8
§get_description: unsafe extern "C" fn() -> *const i8
§get_name: unsafe extern "C" fn() -> *const i8
§get_package: unsafe extern "C" fn() -> *const i8
§incoming_event: unsafe extern "C" fn(*mut json_t)
§handle_request: unsafe extern "C" fn(*mut json_t) -> *mut json_t
§events_mask: u32
Trait 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