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

pub struct InlinedRootPath {
    pub data: Vec<DisambiguatedDefPathData>,
    pub def_id: DefId,
}
Unstable (rustc_private)

Root of an inlined item. We track the DefPath of the item within the original crate but also its def-id. This is kind of an augmented version of a DefPath that includes a DefId. This is all sort of ugly but the hope is that inlined items will be going away soon anyway.

Some of the constraints that led to the current approach:

Fields

data: Vec<DisambiguatedDefPathData>
Unstable (rustc_private)
def_id: DefId
Unstable (rustc_private)

Trait Implementations

Derived Implementations

impl Decodable for InlinedRootPath
[src]

fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<InlinedRootPath, __D::Error>

impl Encodable for InlinedRootPath
[src]

fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>

impl Hash for InlinedRootPath
[src]

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

Feeds this value into the state given, updating the hasher as necessary.

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher
1.3.0

Feeds a slice of this type into the state provided.

impl Eq for InlinedRootPath
[src]

impl PartialEq for InlinedRootPath
[src]

fn eq(&self, __arg_0: &InlinedRootPath) -> bool

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

fn ne(&self, __arg_0: &InlinedRootPath) -> bool

This method tests for !=.

impl Debug for InlinedRootPath
[src]

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

Formats the value using the given formatter.

impl Clone for InlinedRootPath
[src]

fn clone(&self) -> InlinedRootPath

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