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

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

this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?

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).