Trait References

Source
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§

Source

fn referenced_types<'a>(&'a self, names: &mut BTreeSet<&'a IdentifierReference>)

Source

fn referenced_annotations<'a>( &'a self, names: &mut BTreeSet<&'a IdentifierReference>, )

Implementors§