[][src]Trait lv2::prelude::Unmap

pub trait Unmap {
    fn unmap<T>(&self, urid: URID<T>) -> Option<&CStr>
    where
        T: ?Sized
; }

A handle to map URIDs to URIs.

Required methods

fn unmap<T>(&self, urid: URID<T>) -> Option<&CStr> where
    T: ?Sized

Get the URI of a previously mapped URID.

This method may return None if the given urid is not mapped to URI yet.

Realtime usage

This action may not be realtime-safe since it may involve locking mutexes or allocating dynamic memory. If you are working in a realtime environment, you should cache mapped URIDs in a URIDCollection and use it instead.

Loading content...

Implementors

impl Unmap for HashURIDMapper[src]

impl<'a> Unmap for LV2Unmap<'a>[src]

Loading content...