Type Definition rustc::middle::dependency_format::DependencyList [] [src]

type DependencyList = Vec<Linkage>;
🔬 This is a nightly-only experimental API. (rustc_private)

A list of dependencies for a certain crate type.

The length of this vector is the same as the number of external crates used. The value is None if the crate does not need to be linked (it was found statically in another dylib), or Some(kind) if it needs to be linked as kind (either static or dynamic).