[][src]Trait urid::Unmap

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

A handle to map URIDs to URIs.

Required methods

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

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]

Loading content...