Struct janus_plugin::EventHandler [] [src]

#[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

Trait Implementations

impl Debug for janus_eventhandler
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations