Type Alias AssemblyRefRc

pub type AssemblyRefRc = Arc<AssemblyRef>;
Expand description

A reference-counted pointer to an crate::metadata::tables::assemblyref::AssemblyRef

Provides shared ownership and automatic memory management for assembly reference instances. Multiple references can safely point to the same assembly reference data across threads.

Aliased Type§

pub struct AssemblyRefRc { /* private fields */ }

Trait Implementations§

§

impl ImportContainer for AssemblyRefRc

§

fn get_imports(&self, imports: &Imports) -> Vec<ImportRc>

Get all imports provided by this source entity. Read more