Trait dae_parser::local_map::HasId[][src]

pub trait HasId {
    fn id(&self) -> Option<&str>;
fn get_local_map<'a, 'b>(
        maps: &'b LocalMaps<'a>
    ) -> &'b Option<LocalMap<'a, Self>>;
fn get_local_map_mut<'a, 'b>(
        maps: &'b mut LocalMaps<'a>
    ) -> &'b mut Option<LocalMap<'a, Self>>; }
Expand description

A generic ID getter function.

Required methods

Get the ID of the node.

Extract the relevant LocalMap field from a LocalMaps.

Extract the relevant LocalMap field from a LocalMaps.

Implementors