[][src]Struct lv2rs_urid::CachedMap

pub struct CachedMap { /* fields omitted */ }

Cached version of Map

Methods

impl CachedMap[src]

pub fn new(raw: &'static mut Map) -> CachedMap[src]

Create a new cached map from a mutable map reference.

pub fn try_from_features(features: &FeaturesList) -> Option<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 cache(&self) -> &HashMap<&'static CStr, URID>[src]

Return a reference to the cache.

pub fn map(&mut self, uri: &'static CStr) -> URID[src]

Map a URI to a URID.

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

Auto Trait Implementations

impl !Send for CachedMap

impl !Sync for CachedMap

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]