[][src]Struct janus_plugin::EventHandler

#[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) -> i32destroy: unsafe extern "C" fn()get_api_compatibility: unsafe extern "C" fn() -> i32get_version: unsafe extern "C" fn() -> i32get_version_string: unsafe extern "C" fn() -> *const i8get_description: unsafe extern "C" fn() -> *const i8get_name: unsafe extern "C" fn() -> *const i8get_author: unsafe extern "C" fn() -> *const i8get_package: unsafe extern "C" fn() -> *const i8incoming_event: unsafe extern "C" fn(*mut json_t)handle_request: unsafe extern "C" fn(*mut json_t) -> *mut json_tevents_mask: u32

Trait Implementations

impl Debug for janus_eventhandler[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.