pub trait References {
    // Provided methods
    fn referenced_types<'a>(
        &'a self,
        names: &mut HashSet<&'a IdentifierReference>
    ) { ... }
    fn referenced_annotations<'a>(
        &'a self,
        names: &mut HashSet<&'a IdentifierReference>
    ) { ... }
}

Provided Methods§

source

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

source

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

Implementors§