pub trait HasGMLAttributes {
    fn attributes(&self) -> &Vec<(String, GMLValue)> ;
    fn attributes_mut(&mut self) -> &mut Vec<(String, GMLValue)> ;
}

Required Methods§

Implementors§