Enum rustc_trans::middle::cstore::DepKind [] [src]

pub enum DepKind {
    UnexportedMacrosOnly,
    MacrosOnly,
    Implicit,
    Explicit,
}
🔬 This is a nightly-only experimental API. (rustc_private)

Variants

🔬 This is a nightly-only experimental API. (rustc_private)

A dependency that is only used for its macros, none of which are visible from other crates. These are included in the metadata only as placeholders and are ignored when decoding.

🔬 This is a nightly-only experimental API. (rustc_private)

A dependency that is only used for its macros.

🔬 This is a nightly-only experimental API. (rustc_private)

A dependency that is always injected into the dependency list and so doesn't need to be linked to an rlib, e.g. the injected allocator.

🔬 This is a nightly-only experimental API. (rustc_private)

A dependency that is required by an rlib version of this crate. Ordinary extern crates result in Explicit dependencies.

Methods

impl DepKind
[src]

🔬 This is a nightly-only experimental API. (rustc_private)

Trait Implementations

impl Decodable for DepKind
[src]

🔬 This is a nightly-only experimental API. (rustc_private)

impl PartialOrd<DepKind> for DepKind
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<DepKind> for DepKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for DepKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for DepKind
[src]

impl Debug for DepKind
[src]

Formats the value using the given formatter.

impl Encodable for DepKind
[src]

🔬 This is a nightly-only experimental API. (rustc_private)

impl Copy for DepKind
[src]

impl Ord for DepKind
[src]

This method returns an Ordering between self and other. Read more