pub trait HasNameReference {
    // Required methods
    fn name_reference(&self) -> &IdentifierReference;
    fn set_name_reference(&mut self, name: IdentifierReference);
}

Required Methods§

source

fn name_reference(&self) -> &IdentifierReference

Get the name reference for the enclosing type.

source

fn set_name_reference(&mut self, name: IdentifierReference)

Set the name reference for the enclosing type.

Implementors§