Struct dae_parser::local_map::LocalMap [−][src]
Expand description
A map for looking up elements of type T
in the document by ID.
Tuple Fields
0: HashMap<&'a str, &'a T>
Implementations
Look up an element by ID.
Look up an element by URL reference.
This is a local map, meaning that it does not support references to URLs which are not
of the special form #ref
, referring to an element with ID ref
in the same document.
Look up an element by URL reference.
This is a simple wrapper around get_raw
,
but it has better type safety, since it ensures that the reference is a reference to a T
.
This is a local map, meaning that it does not support references to URLs which are not
of the special form #ref
, referring to an element with ID ref
in the same document.
Trait Implementations
Auto Trait Implementations
impl<'a, T: ?Sized> RefUnwindSafe for LocalMap<'a, T> where
T: RefUnwindSafe,
impl<'a, T: ?Sized> UnwindSafe for LocalMap<'a, T> where
T: RefUnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more