pub trait References {
// Provided methods
fn referenced_types<'a>(
&'a self,
names: &mut BTreeSet<&'a IdentifierReference>,
) { ... }
fn referenced_annotations<'a>(
&'a self,
names: &mut BTreeSet<&'a IdentifierReference>,
) { ... }
}
Expand description
This trait is implemented by types to allow for query of references.