Struct dae_parser::LocalMaps [−][src]
pub struct LocalMaps<'a> { /* fields omitted */ }
Expand description
A data structure which maintains LocalMap
s for every applicable type.
If you need to use Document::local_map
for many different types,
it may be more efficient to use this type, which calculates all maps
in a single pass.
Implementations
Enable collection for the given type. This is used as part of a builder-style API for
customizing collection before performing the collection pass.
For example, if we only want to collect Geometry
and Source
types:
let maps = LocalMaps::default()
.set::<Geometry>()
.set::<Source>()
.collect(&doc);
Disable collection for the given type. This is used as part of a builder-style API for
customizing collection before performing the collection pass.
For example, if we want to collect everything except the ForceField
and Sampler
types:
let maps = LocalMaps::new()
.unset::<ForceField>()
.unset::<Sampler>()
.collect(&doc);
Run the collection pass, putting all elements in the given IDs based on their types.
Look up an element by ID, in a NameRef
.
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> RefUnwindSafe for LocalMaps<'a>
impl<'a> UnwindSafe for LocalMaps<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more