Struct rustc::hir::map::definitions::DefData [] [src]

pub struct DefData {
    pub key: DefKey,
    pub node_id: NodeId,
}
Unstable (rustc_private)

For each definition, we track the following data. A definition here is defined somewhat circularly as "something with a def-id", but it generally corresponds to things like structs, enums, etc. There are also some rather random cases (like const initializer expressions) that are mostly just leftovers.

Fields

key: DefKey
Unstable (rustc_private)
node_id: NodeId
Unstable (rustc_private)

Local ID within the HIR.

Trait Implementations

Derived Implementations

impl Debug for DefData
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for DefData
[src]

fn clone(&self) -> DefData

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more