[][src]Struct lv2rs_urid::Map

#[repr(C)]
pub struct Map { pub handle: MapHandle, pub map: extern "C" fn(handle: MapHandle, uri: *const c_char) -> URID, }

Struct for mapping URIs to URIDs.

Fields

handle: MapHandle

Pointer to a host-specific handle to map URIs to URIDs.

map: extern "C" fn(handle: MapHandle, uri: *const c_char) -> URID

Function that maps a URI to a URID.

Methods

impl Map[src]

pub fn try_from_features<'a>(
    features: &FeaturesList
) -> Option<&'static mut Self>
[src]

Try to find the mapping feature in the features map.

If this function returns None if the host does not support mapping.

pub fn map<'a, S>(&mut self, uri: S) -> URID where
    &'a CStr: From<S>, 
[src]

Map a URI to a URID.

If the host is properly implemented, this should be an injective function: Every URI should be mapped to a unique URID.

Auto Trait Implementations

impl !Send for Map

impl !Sync for Map

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

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

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