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.
Provided Methods§
fn referenced_types<'a>(&'a self, names: &mut BTreeSet<&'a IdentifierReference>)
fn referenced_annotations<'a>( &'a self, names: &mut BTreeSet<&'a IdentifierReference>, )
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".