[][src]Struct lv2_sys::_LV2UI_Port_Map

#[repr(C)]
pub struct _LV2UI_Port_Map {
    pub handle: LV2UI_Feature_Handle,
    pub port_index: Option<unsafe extern "C" fn(handle: LV2UI_Feature_Handle, symbol: *const c_char) -> u32>,
}

Feature to map port symbols to UIs.

This can be used by the UI to get the index for a port with the given symbol. This makes it possible to implement and distribute a UI separately from the plugin (since symbol, unlike index, is a stable port identifier).

Fields

handle: LV2UI_Feature_Handle

Pointer to opaque data which must be passed to port_index().

port_index: Option<unsafe extern "C" fn(handle: LV2UI_Feature_Handle, symbol: *const c_char) -> u32>

Get the index for the port with the given symbol.

@return The index of the port, or LV2UI_INVALID_PORT_INDEX if no such port is found.

Trait Implementations

impl Clone for _LV2UI_Port_Map[src]

impl Copy for _LV2UI_Port_Map[src]

impl Debug for _LV2UI_Port_Map[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> 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 = 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.