[][src]Struct lv2rs_urid::CachedUnmap

pub struct CachedUnmap { /* fields omitted */ }

Cached version of Unmap

Methods

impl CachedUnmap[src]

pub fn new(raw_map: &'static mut Unmap) -> Self[src]

Create a new cached unmap from a mutable unmap reference.

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

Try to find the unmapping feature in the features map.

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

pub fn cache(&self) -> &HashMap<URID, CString>[src]

Return a reference to the cache.

pub fn unmap(&mut self, urid: URID) -> Option<&CString>[src]

Try to map a URID to a URI.

The same rules from Unmap.unmap apply. Additionally, this function will cache the mappings and short-cut if a requested mapping is already cached.

Auto Trait Implementations

impl !Send for CachedUnmap

impl !Sync for CachedUnmap

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]