[][src]Struct kpal_plugin::VTable

#[repr(C)]
pub struct VTable {
    pub peripheral_free: extern "C" fn(_: *mut Peripheral),
    pub error_message: extern "C" fn(_: c_int) -> *const c_uchar,
    pub attribute_name: extern "C" fn(peripheral: *const Peripheral, id: size_t, buffer: *mut c_uchar, length: size_t) -> c_int,
    pub attribute_value: extern "C" fn(peripheral: *const Peripheral, id: size_t, value: *mut Value) -> c_int,
    pub set_attribute_value: extern "C" fn(peripheral: *mut Peripheral, id: size_t, value: *const Value) -> c_int,
}

A table of function pointers that comprise the plugin API for the foreign function interface.

Fields

peripheral_free: extern "C" fn(_: *mut Peripheral)

Frees the memory associated with a peripheral.

error_message: extern "C" fn(_: c_int) -> *const c_uchar

Returns an error message associated with a Plugin error code.

attribute_name: extern "C" fn(peripheral: *const Peripheral, id: size_t, buffer: *mut c_uchar, length: size_t) -> c_int

Writes the name of an attribute to a buffer that is provided by the caller.

attribute_value: extern "C" fn(peripheral: *const Peripheral, id: size_t, value: *mut Value) -> c_int

Writes the value of an attribute to a Value instance that is provided by the caller.

set_attribute_value: extern "C" fn(peripheral: *mut Peripheral, id: size_t, value: *const Value) -> c_int

Sets the value of an attribute.

Trait Implementations

impl Clone for VTable[src]

impl Debug for VTable[src]

Auto Trait Implementations

impl RefUnwindSafe for VTable

impl Send for VTable

impl Sync for VTable

impl Unpin for VTable

impl UnwindSafe for VTable

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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.