1use std::array::IntoIter;
2use std::borrow::Cow;
3use std::fmt::Debug;
4
5use rustc_ast as ast;
6use rustc_ast::NodeId;
7use rustc_data_structures::fx::FxIndexMap;
8use rustc_error_messages::{DiagArgValue, IntoDiagArg};
9use rustc_hir_id::HirId;
10use rustc_macros::{Decodable, Encodable, StableHash};
11use rustc_span::Symbol;
12use rustc_span::def_id::{DefId, LocalDefId};
13use rustc_span::hygiene::MacroKind;
14
15use crate as hir;
16use crate::definitions::DefPathData;
17
18#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for CtorOf { }
#[automatically_derived]
impl ::core::clone::Clone for CtorOf {
#[inline]
fn clone(&self) -> CtorOf { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for CtorOf { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for CtorOf { }
#[automatically_derived]
impl ::core::cmp::PartialEq for CtorOf {
#[inline]
fn eq(&self, other: &CtorOf) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for CtorOf {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for CtorOf {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
CtorOf::Struct => { 0usize }
CtorOf::Variant => { 1usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for CtorOf {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => { CtorOf::Struct }
1usize => { CtorOf::Variant }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CtorOf`, expected 0..2, actual {0}",
n));
}
}
}
}
};Decodable, #[automatically_derived]
impl ::core::hash::Hash for CtorOf {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for CtorOf {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
CtorOf::Struct => "Struct",
CtorOf::Variant => "Variant",
})
}
}Debug, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for CtorOf {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self { CtorOf::Struct => {} CtorOf::Variant => {} }
}
}
};StableHash)]
20pub enum CtorOf {
21 Struct,
23 Variant,
25}
26
27#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for CtorKind { }
#[automatically_derived]
impl ::core::clone::Clone for CtorKind {
#[inline]
fn clone(&self) -> CtorKind { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for CtorKind { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for CtorKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for CtorKind {
#[inline]
fn eq(&self, other: &CtorKind) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for CtorKind {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for CtorKind {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
CtorKind::Fn => { 0usize }
CtorKind::Const => { 1usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for CtorKind {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => { CtorKind::Fn }
1usize => { CtorKind::Const }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CtorKind`, expected 0..2, actual {0}",
n));
}
}
}
}
};Decodable, #[automatically_derived]
impl ::core::hash::Hash for CtorKind {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for CtorKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self { CtorKind::Fn => "Fn", CtorKind::Const => "Const", })
}
}Debug, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for CtorKind {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self { CtorKind::Fn => {} CtorKind::Const => {} }
}
}
};StableHash)]
29pub enum CtorKind {
30 Fn,
32 Const,
34}
35
36#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for MacroKinds { }
#[automatically_derived]
impl ::core::clone::Clone for MacroKinds {
#[inline]
fn clone(&self) -> MacroKinds {
let _: ::core::clone::AssertParamIsClone<u8>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for MacroKinds { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for MacroKinds { }
#[automatically_derived]
impl ::core::cmp::PartialEq for MacroKinds {
#[inline]
fn eq(&self, other: &MacroKinds) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for MacroKinds {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<u8>;
}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for MacroKinds {
#[inline]
fn partial_cmp(&self, other: &MacroKinds)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for MacroKinds {
#[inline]
fn cmp(&self, other: &MacroKinds) -> ::core::cmp::Ordering {
::core::cmp::Ord::cmp(&self.0, &other.0)
}
}Ord, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for MacroKinds {
fn encode(&self, __encoder: &mut __E) {
let MacroKinds(ref __binding_0) = *self;
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for MacroKinds {
fn decode(__decoder: &mut __D) -> Self {
MacroKinds(::rustc_serialize::Decodable::decode(__decoder))
}
}
};Decodable, #[automatically_derived]
impl ::core::hash::Hash for MacroKinds {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
::core::hash::Hash::hash(&self.0, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for MacroKinds {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_tuple_field1_finish(f, "MacroKinds",
&&self.0)
}
}Debug)]
38#[derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for MacroKinds {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
MacroKinds(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash)]
39pub struct MacroKinds(u8);
40impl MacroKinds {
#[allow(deprecated, non_upper_case_globals,)]
pub const BANG: Self = Self::from_bits_retain(1 << 0);
#[allow(deprecated, non_upper_case_globals,)]
pub const ATTR: Self = Self::from_bits_retain(1 << 1);
#[allow(deprecated, non_upper_case_globals,)]
pub const DERIVE: Self = Self::from_bits_retain(1 << 2);
}
impl ::bitflags::Flags for MacroKinds {
const FLAGS: &'static [::bitflags::Flag<MacroKinds>] =
&[{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("BANG", MacroKinds::BANG)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("ATTR", MacroKinds::ATTR)
},
{
#[allow(deprecated, non_upper_case_globals,)]
::bitflags::Flag::new("DERIVE", MacroKinds::DERIVE)
}];
type Bits = u8;
fn bits(&self) -> u8 { MacroKinds::bits(self) }
fn from_bits_retain(bits: u8) -> MacroKinds {
MacroKinds::from_bits_retain(bits)
}
}
#[allow(dead_code, deprecated, unused_doc_comments, unused_attributes,
unused_mut, unused_imports, non_upper_case_globals, clippy ::
assign_op_pattern, clippy :: iter_without_into_iter,)]
const _: () =
{
#[allow(dead_code, deprecated, unused_attributes)]
impl MacroKinds {
#[inline]
pub const fn empty() -> Self {
Self(<u8 as ::bitflags::Bits>::EMPTY)
}
#[inline]
pub const fn all() -> Self {
let mut truncated = <u8 as ::bitflags::Bits>::EMPTY;
let mut i = 0;
{
{
let flag =
<MacroKinds as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<MacroKinds as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
{
{
let flag =
<MacroKinds as ::bitflags::Flags>::FLAGS[i].value().bits();
truncated = truncated | flag;
i += 1;
}
};
let _ = i;
Self(truncated)
}
#[inline]
pub const fn bits(&self) -> u8 { self.0 }
#[inline]
pub const fn from_bits(bits: u8)
-> ::bitflags::__private::core::option::Option<Self> {
let truncated = Self::from_bits_truncate(bits).0;
if truncated == bits {
::bitflags::__private::core::option::Option::Some(Self(bits))
} else { ::bitflags::__private::core::option::Option::None }
}
#[inline]
pub const fn from_bits_truncate(bits: u8) -> Self {
Self(bits & Self::all().0)
}
#[inline]
pub const fn from_bits_retain(bits: u8) -> Self { Self(bits) }
#[inline]
pub fn from_name(name: &str)
-> ::bitflags::__private::core::option::Option<Self> {
{
if name == "BANG" {
return ::bitflags::__private::core::option::Option::Some(Self(MacroKinds::BANG.bits()));
}
};
;
{
if name == "ATTR" {
return ::bitflags::__private::core::option::Option::Some(Self(MacroKinds::ATTR.bits()));
}
};
;
{
if name == "DERIVE" {
return ::bitflags::__private::core::option::Option::Some(Self(MacroKinds::DERIVE.bits()));
}
};
;
let _ = name;
::bitflags::__private::core::option::Option::None
}
#[inline]
pub const fn is_empty(&self) -> bool {
self.0 == <u8 as ::bitflags::Bits>::EMPTY
}
#[inline]
pub const fn is_all(&self) -> bool {
Self::all().0 | self.0 == self.0
}
#[inline]
pub const fn intersects(&self, other: Self) -> bool {
self.0 & other.0 != <u8 as ::bitflags::Bits>::EMPTY
}
#[inline]
pub const fn contains(&self, other: Self) -> bool {
self.0 & other.0 == other.0
}
#[inline]
pub fn insert(&mut self, other: Self) {
*self = Self(self.0).union(other);
}
#[inline]
pub fn remove(&mut self, other: Self) {
*self = Self(self.0).difference(other);
}
#[inline]
pub fn toggle(&mut self, other: Self) {
*self = Self(self.0).symmetric_difference(other);
}
#[inline]
pub fn set(&mut self, other: Self, value: bool) {
if value { self.insert(other); } else { self.remove(other); }
}
#[inline]
#[must_use]
pub const fn intersection(self, other: Self) -> Self {
Self(self.0 & other.0)
}
#[inline]
#[must_use]
pub const fn union(self, other: Self) -> Self {
Self(self.0 | other.0)
}
#[inline]
#[must_use]
pub const fn difference(self, other: Self) -> Self {
Self(self.0 & !other.0)
}
#[inline]
#[must_use]
pub const fn symmetric_difference(self, other: Self) -> Self {
Self(self.0 ^ other.0)
}
#[inline]
#[must_use]
pub const fn complement(self) -> Self {
Self::from_bits_truncate(!self.0)
}
}
impl ::bitflags::__private::core::fmt::Binary for MacroKinds {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::Binary::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::fmt::Octal for MacroKinds {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::Octal::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::fmt::LowerHex for MacroKinds {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::LowerHex::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::fmt::UpperHex for MacroKinds {
fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
-> ::bitflags::__private::core::fmt::Result {
let inner = self.0;
::bitflags::__private::core::fmt::UpperHex::fmt(&inner, f)
}
}
impl ::bitflags::__private::core::ops::BitOr for MacroKinds {
type Output = Self;
#[inline]
fn bitor(self, other: MacroKinds) -> Self { self.union(other) }
}
impl ::bitflags::__private::core::ops::BitOrAssign for MacroKinds {
#[inline]
fn bitor_assign(&mut self, other: Self) { self.insert(other); }
}
impl ::bitflags::__private::core::ops::BitXor for MacroKinds {
type Output = Self;
#[inline]
fn bitxor(self, other: Self) -> Self {
self.symmetric_difference(other)
}
}
impl ::bitflags::__private::core::ops::BitXorAssign for MacroKinds {
#[inline]
fn bitxor_assign(&mut self, other: Self) { self.toggle(other); }
}
impl ::bitflags::__private::core::ops::BitAnd for MacroKinds {
type Output = Self;
#[inline]
fn bitand(self, other: Self) -> Self { self.intersection(other) }
}
impl ::bitflags::__private::core::ops::BitAndAssign for MacroKinds {
#[inline]
fn bitand_assign(&mut self, other: Self) {
*self =
Self::from_bits_retain(self.bits()).intersection(other);
}
}
impl ::bitflags::__private::core::ops::Sub for MacroKinds {
type Output = Self;
#[inline]
fn sub(self, other: Self) -> Self { self.difference(other) }
}
impl ::bitflags::__private::core::ops::SubAssign for MacroKinds {
#[inline]
fn sub_assign(&mut self, other: Self) { self.remove(other); }
}
impl ::bitflags::__private::core::ops::Not for MacroKinds {
type Output = Self;
#[inline]
fn not(self) -> Self { self.complement() }
}
impl ::bitflags::__private::core::iter::Extend<MacroKinds> for
MacroKinds {
fn extend<T: ::bitflags::__private::core::iter::IntoIterator<Item
= Self>>(&mut self, iterator: T) {
for item in iterator { self.insert(item) }
}
}
impl ::bitflags::__private::core::iter::FromIterator<MacroKinds> for
MacroKinds {
fn from_iter<T: ::bitflags::__private::core::iter::IntoIterator<Item
= Self>>(iterator: T) -> Self {
use ::bitflags::__private::core::iter::Extend;
let mut result = Self::empty();
result.extend(iterator);
result
}
}
impl MacroKinds {
#[inline]
pub const fn iter(&self) -> ::bitflags::iter::Iter<MacroKinds> {
::bitflags::iter::Iter::__private_const_new(<MacroKinds as
::bitflags::Flags>::FLAGS,
MacroKinds::from_bits_retain(self.bits()),
MacroKinds::from_bits_retain(self.bits()))
}
#[inline]
pub const fn iter_names(&self)
-> ::bitflags::iter::IterNames<MacroKinds> {
::bitflags::iter::IterNames::__private_const_new(<MacroKinds
as ::bitflags::Flags>::FLAGS,
MacroKinds::from_bits_retain(self.bits()),
MacroKinds::from_bits_retain(self.bits()))
}
}
impl ::bitflags::__private::core::iter::IntoIterator for MacroKinds {
type Item = MacroKinds;
type IntoIter = ::bitflags::iter::Iter<MacroKinds>;
fn into_iter(self) -> Self::IntoIter { self.iter() }
}
};bitflags::bitflags! {
41 impl MacroKinds: u8 {
42 const BANG = 1 << 0;
43 const ATTR = 1 << 1;
44 const DERIVE = 1 << 2;
45 }
46}
47
48impl From<MacroKind> for MacroKinds {
49 fn from(kind: MacroKind) -> Self {
50 match kind {
51 MacroKind::Bang => Self::BANG,
52 MacroKind::Attr => Self::ATTR,
53 MacroKind::Derive => Self::DERIVE,
54 }
55 }
56}
57
58impl MacroKinds {
59 pub fn descr(self) -> &'static str {
63 match self {
64 Self::BANG => "macro",
66 Self::ATTR => "attribute macro",
67 Self::DERIVE => "derive macro",
68 _ if self == (Self::ATTR | Self::BANG) => "attribute/function macro",
69 _ if self == (Self::DERIVE | Self::BANG) => "derive/function macro",
70 _ if self == (Self::ATTR | Self::DERIVE) => "attribute/derive macro",
71 _ if self.is_all() => "attribute/derive/function macro",
72 _ if self.is_empty() => "useless macro",
73 _ => ::core::panicking::panic("internal error: entered unreachable code")unreachable!(),
74 }
75 }
76
77 pub fn article(self) -> &'static str {
79 if self.contains(Self::ATTR) { "an" } else { "a" }
80 }
81}
82
83#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for NonMacroAttrKind { }
#[automatically_derived]
impl ::core::clone::Clone for NonMacroAttrKind {
#[inline]
fn clone(&self) -> NonMacroAttrKind {
let _: ::core::clone::AssertParamIsClone<Symbol>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for NonMacroAttrKind { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for NonMacroAttrKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for NonMacroAttrKind {
#[inline]
fn eq(&self, other: &NonMacroAttrKind) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(NonMacroAttrKind::Builtin(__self_0),
NonMacroAttrKind::Builtin(__arg1_0)) =>
__self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for NonMacroAttrKind {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<Symbol>;
}
}Eq, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for NonMacroAttrKind {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
NonMacroAttrKind::Builtin(ref __binding_0) => { 0usize }
NonMacroAttrKind::Tool => { 1usize }
NonMacroAttrKind::DeriveHelper => { 2usize }
NonMacroAttrKind::DeriveHelperCompat => { 3usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
match *self {
NonMacroAttrKind::Builtin(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
NonMacroAttrKind::Tool => {}
NonMacroAttrKind::DeriveHelper => {}
NonMacroAttrKind::DeriveHelperCompat => {}
}
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for NonMacroAttrKind {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => {
NonMacroAttrKind::Builtin(::rustc_serialize::Decodable::decode(__decoder))
}
1usize => { NonMacroAttrKind::Tool }
2usize => { NonMacroAttrKind::DeriveHelper }
3usize => { NonMacroAttrKind::DeriveHelperCompat }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `NonMacroAttrKind`, expected 0..4, actual {0}",
n));
}
}
}
}
};Decodable, #[automatically_derived]
impl ::core::hash::Hash for NonMacroAttrKind {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state);
match self {
NonMacroAttrKind::Builtin(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
_ => {}
}
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for NonMacroAttrKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
NonMacroAttrKind::Builtin(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Builtin", &__self_0),
NonMacroAttrKind::Tool =>
::core::fmt::Formatter::write_str(f, "Tool"),
NonMacroAttrKind::DeriveHelper =>
::core::fmt::Formatter::write_str(f, "DeriveHelper"),
NonMacroAttrKind::DeriveHelperCompat =>
::core::fmt::Formatter::write_str(f, "DeriveHelperCompat"),
}
}
}Debug, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for
NonMacroAttrKind {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
NonMacroAttrKind::Builtin(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
NonMacroAttrKind::Tool => {}
NonMacroAttrKind::DeriveHelper => {}
NonMacroAttrKind::DeriveHelperCompat => {}
}
}
}
};StableHash)]
85pub enum NonMacroAttrKind {
86 Builtin(Symbol),
88 Tool,
90 DeriveHelper,
92 DeriveHelperCompat,
95}
96
97#[derive(#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for DefKind { }
#[automatically_derived]
impl ::core::clone::Clone for DefKind {
#[inline]
fn clone(&self) -> DefKind {
let _: ::core::clone::AssertParamIsClone<bool>;
let _: ::core::clone::AssertParamIsClone<hir::Safety>;
let _: ::core::clone::AssertParamIsClone<ast::Mutability>;
let _: ::core::clone::AssertParamIsClone<CtorOf>;
let _: ::core::clone::AssertParamIsClone<CtorKind>;
let _: ::core::clone::AssertParamIsClone<MacroKinds>;
*self
}
}Clone, #[automatically_derived]
impl ::core::marker::Copy for DefKind { }Copy, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for DefKind { }
#[automatically_derived]
impl ::core::cmp::PartialEq for DefKind {
#[inline]
fn eq(&self, other: &DefKind) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(DefKind::Const { is_type_const: __self_0 }, DefKind::Const {
is_type_const: __arg1_0 }) => __self_0 == __arg1_0,
(DefKind::Static {
safety: __self_0, mutability: __self_1, nested: __self_2 },
DefKind::Static {
safety: __arg1_0, mutability: __arg1_1, nested: __arg1_2 })
=>
__self_2 == __arg1_2 && __self_0 == __arg1_0 &&
__self_1 == __arg1_1,
(DefKind::Ctor(__self_0, __self_1),
DefKind::Ctor(__arg1_0, __arg1_1)) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
(DefKind::AssocConst { is_type_const: __self_0 },
DefKind::AssocConst { is_type_const: __arg1_0 }) =>
__self_0 == __arg1_0,
(DefKind::Macro(__self_0), DefKind::Macro(__arg1_0)) =>
__self_0 == __arg1_0,
(DefKind::Impl { of_trait: __self_0 }, DefKind::Impl {
of_trait: __arg1_0 }) => __self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DefKind {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<bool>;
let _: ::core::cmp::AssertParamIsEq<hir::Safety>;
let _: ::core::cmp::AssertParamIsEq<ast::Mutability>;
let _: ::core::cmp::AssertParamIsEq<CtorOf>;
let _: ::core::cmp::AssertParamIsEq<CtorKind>;
let _: ::core::cmp::AssertParamIsEq<MacroKinds>;
}
}Eq, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for DefKind {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
DefKind::Mod => { 0usize }
DefKind::Struct => { 1usize }
DefKind::Union => { 2usize }
DefKind::Enum => { 3usize }
DefKind::Variant => { 4usize }
DefKind::Trait => { 5usize }
DefKind::TyAlias => { 6usize }
DefKind::ForeignTy => { 7usize }
DefKind::TraitAlias => { 8usize }
DefKind::AssocTy => { 9usize }
DefKind::TyParam => { 10usize }
DefKind::Fn => { 11usize }
DefKind::Const { is_type_const: ref __binding_0 } => {
12usize
}
DefKind::ConstParam => { 13usize }
DefKind::Static {
safety: ref __binding_0,
mutability: ref __binding_1,
nested: ref __binding_2 } => {
14usize
}
DefKind::Ctor(ref __binding_0, ref __binding_1) => {
15usize
}
DefKind::AssocFn => { 16usize }
DefKind::AssocConst { is_type_const: ref __binding_0 } => {
17usize
}
DefKind::Macro(ref __binding_0) => { 18usize }
DefKind::ExternCrate => { 19usize }
DefKind::Use => { 20usize }
DefKind::ForeignMod => { 21usize }
DefKind::AnonConst => { 22usize }
DefKind::OpaqueTy => { 23usize }
DefKind::Field => { 24usize }
DefKind::LifetimeParam => { 25usize }
DefKind::GlobalAsm => { 26usize }
DefKind::Impl { of_trait: ref __binding_0 } => { 27usize }
DefKind::Closure => { 28usize }
DefKind::SyntheticCoroutineBody => { 29usize }
DefKind::TestBinderConstraints => { 30usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
match *self {
DefKind::Mod => {}
DefKind::Struct => {}
DefKind::Union => {}
DefKind::Enum => {}
DefKind::Variant => {}
DefKind::Trait => {}
DefKind::TyAlias => {}
DefKind::ForeignTy => {}
DefKind::TraitAlias => {}
DefKind::AssocTy => {}
DefKind::TyParam => {}
DefKind::Fn => {}
DefKind::Const { is_type_const: ref __binding_0 } => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
DefKind::ConstParam => {}
DefKind::Static {
safety: ref __binding_0,
mutability: ref __binding_1,
nested: ref __binding_2 } => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_2,
__encoder);
}
DefKind::Ctor(ref __binding_0, ref __binding_1) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
}
DefKind::AssocFn => {}
DefKind::AssocConst { is_type_const: ref __binding_0 } => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
DefKind::Macro(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
DefKind::ExternCrate => {}
DefKind::Use => {}
DefKind::ForeignMod => {}
DefKind::AnonConst => {}
DefKind::OpaqueTy => {}
DefKind::Field => {}
DefKind::LifetimeParam => {}
DefKind::GlobalAsm => {}
DefKind::Impl { of_trait: ref __binding_0 } => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
DefKind::Closure => {}
DefKind::SyntheticCoroutineBody => {}
DefKind::TestBinderConstraints => {}
}
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for DefKind {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => { DefKind::Mod }
1usize => { DefKind::Struct }
2usize => { DefKind::Union }
3usize => { DefKind::Enum }
4usize => { DefKind::Variant }
5usize => { DefKind::Trait }
6usize => { DefKind::TyAlias }
7usize => { DefKind::ForeignTy }
8usize => { DefKind::TraitAlias }
9usize => { DefKind::AssocTy }
10usize => { DefKind::TyParam }
11usize => { DefKind::Fn }
12usize => {
DefKind::Const {
is_type_const: ::rustc_serialize::Decodable::decode(__decoder),
}
}
13usize => { DefKind::ConstParam }
14usize => {
DefKind::Static {
safety: ::rustc_serialize::Decodable::decode(__decoder),
mutability: ::rustc_serialize::Decodable::decode(__decoder),
nested: ::rustc_serialize::Decodable::decode(__decoder),
}
}
15usize => {
DefKind::Ctor(::rustc_serialize::Decodable::decode(__decoder),
::rustc_serialize::Decodable::decode(__decoder))
}
16usize => { DefKind::AssocFn }
17usize => {
DefKind::AssocConst {
is_type_const: ::rustc_serialize::Decodable::decode(__decoder),
}
}
18usize => {
DefKind::Macro(::rustc_serialize::Decodable::decode(__decoder))
}
19usize => { DefKind::ExternCrate }
20usize => { DefKind::Use }
21usize => { DefKind::ForeignMod }
22usize => { DefKind::AnonConst }
23usize => { DefKind::OpaqueTy }
24usize => { DefKind::Field }
25usize => { DefKind::LifetimeParam }
26usize => { DefKind::GlobalAsm }
27usize => {
DefKind::Impl {
of_trait: ::rustc_serialize::Decodable::decode(__decoder),
}
}
28usize => { DefKind::Closure }
29usize => { DefKind::SyntheticCoroutineBody }
30usize => { DefKind::TestBinderConstraints }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `DefKind`, expected 0..31, actual {0}",
n));
}
}
}
}
};Decodable, #[automatically_derived]
impl ::core::hash::Hash for DefKind {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state);
match self {
DefKind::Const { is_type_const: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
DefKind::Static {
safety: __self_0, mutability: __self_1, nested: __self_2 } =>
{
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state);
::core::hash::Hash::hash(__self_2, state)
}
DefKind::Ctor(__self_0, __self_1) => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
DefKind::AssocConst { is_type_const: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
DefKind::Macro(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
DefKind::Impl { of_trait: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
_ => {}
}
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for DefKind {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
DefKind::Mod => ::core::fmt::Formatter::write_str(f, "Mod"),
DefKind::Struct => ::core::fmt::Formatter::write_str(f, "Struct"),
DefKind::Union => ::core::fmt::Formatter::write_str(f, "Union"),
DefKind::Enum => ::core::fmt::Formatter::write_str(f, "Enum"),
DefKind::Variant =>
::core::fmt::Formatter::write_str(f, "Variant"),
DefKind::Trait => ::core::fmt::Formatter::write_str(f, "Trait"),
DefKind::TyAlias =>
::core::fmt::Formatter::write_str(f, "TyAlias"),
DefKind::ForeignTy =>
::core::fmt::Formatter::write_str(f, "ForeignTy"),
DefKind::TraitAlias =>
::core::fmt::Formatter::write_str(f, "TraitAlias"),
DefKind::AssocTy =>
::core::fmt::Formatter::write_str(f, "AssocTy"),
DefKind::TyParam =>
::core::fmt::Formatter::write_str(f, "TyParam"),
DefKind::Fn => ::core::fmt::Formatter::write_str(f, "Fn"),
DefKind::Const { is_type_const: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f, "Const",
"is_type_const", &__self_0),
DefKind::ConstParam =>
::core::fmt::Formatter::write_str(f, "ConstParam"),
DefKind::Static {
safety: __self_0, mutability: __self_1, nested: __self_2 } =>
::core::fmt::Formatter::debug_struct_field3_finish(f,
"Static", "safety", __self_0, "mutability", __self_1,
"nested", &__self_2),
DefKind::Ctor(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f, "Ctor",
__self_0, &__self_1),
DefKind::AssocFn =>
::core::fmt::Formatter::write_str(f, "AssocFn"),
DefKind::AssocConst { is_type_const: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"AssocConst", "is_type_const", &__self_0),
DefKind::Macro(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Macro",
&__self_0),
DefKind::ExternCrate =>
::core::fmt::Formatter::write_str(f, "ExternCrate"),
DefKind::Use => ::core::fmt::Formatter::write_str(f, "Use"),
DefKind::ForeignMod =>
::core::fmt::Formatter::write_str(f, "ForeignMod"),
DefKind::AnonConst =>
::core::fmt::Formatter::write_str(f, "AnonConst"),
DefKind::OpaqueTy =>
::core::fmt::Formatter::write_str(f, "OpaqueTy"),
DefKind::Field => ::core::fmt::Formatter::write_str(f, "Field"),
DefKind::LifetimeParam =>
::core::fmt::Formatter::write_str(f, "LifetimeParam"),
DefKind::GlobalAsm =>
::core::fmt::Formatter::write_str(f, "GlobalAsm"),
DefKind::Impl { of_trait: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f, "Impl",
"of_trait", &__self_0),
DefKind::Closure =>
::core::fmt::Formatter::write_str(f, "Closure"),
DefKind::SyntheticCoroutineBody =>
::core::fmt::Formatter::write_str(f,
"SyntheticCoroutineBody"),
DefKind::TestBinderConstraints =>
::core::fmt::Formatter::write_str(f, "TestBinderConstraints"),
}
}
}Debug, const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for DefKind {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
DefKind::Mod => {}
DefKind::Struct => {}
DefKind::Union => {}
DefKind::Enum => {}
DefKind::Variant => {}
DefKind::Trait => {}
DefKind::TyAlias => {}
DefKind::ForeignTy => {}
DefKind::TraitAlias => {}
DefKind::AssocTy => {}
DefKind::TyParam => {}
DefKind::Fn => {}
DefKind::Const { is_type_const: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
DefKind::ConstParam => {}
DefKind::Static {
safety: ref __binding_0,
mutability: ref __binding_1,
nested: ref __binding_2 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
}
DefKind::Ctor(ref __binding_0, ref __binding_1) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
DefKind::AssocFn => {}
DefKind::AssocConst { is_type_const: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
DefKind::Macro(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
DefKind::ExternCrate => {}
DefKind::Use => {}
DefKind::ForeignMod => {}
DefKind::AnonConst => {}
DefKind::OpaqueTy => {}
DefKind::Field => {}
DefKind::LifetimeParam => {}
DefKind::GlobalAsm => {}
DefKind::Impl { of_trait: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
DefKind::Closure => {}
DefKind::SyntheticCoroutineBody => {}
DefKind::TestBinderConstraints => {}
}
}
}
};StableHash)]
100pub enum DefKind {
101 Mod,
103 Struct,
105 Union,
106 Enum,
107 Variant,
109 Trait,
110 TyAlias,
112 ForeignTy,
114 TraitAlias,
116 AssocTy,
118 TyParam,
120
121 Fn,
123 Const {
124 is_type_const: bool,
125 },
126 ConstParam,
128 Static {
129 safety: hir::Safety,
131 mutability: ast::Mutability,
133 nested: bool,
135 },
136 Ctor(CtorOf, CtorKind),
153 AssocFn,
156 AssocConst {
158 is_type_const: bool,
159 },
160
161 Macro(MacroKinds),
163
164 ExternCrate,
166 Use,
167 ForeignMod,
169 AnonConst,
181 OpaqueTy,
183 Field,
187 LifetimeParam,
189 GlobalAsm,
191 Impl {
192 of_trait: bool,
193 },
194 Closure,
201 SyntheticCoroutineBody,
204 TestBinderConstraints,
206}
207
208impl DefKind {
209 pub fn descr(self, def_id: DefId) -> &'static str {
215 match self {
216 DefKind::Fn => "function",
217 DefKind::Mod if def_id.is_crate_root() && !def_id.is_local() => "crate",
218 DefKind::Mod => "module",
219 DefKind::Static { .. } => "static",
220 DefKind::Enum => "enum",
221 DefKind::Variant => "variant",
222 DefKind::Ctor(CtorOf::Variant, CtorKind::Fn) => "tuple variant",
223 DefKind::Ctor(CtorOf::Variant, CtorKind::Const) => "unit variant",
224 DefKind::Struct => "struct",
225 DefKind::Ctor(CtorOf::Struct, CtorKind::Fn) => "tuple struct",
226 DefKind::Ctor(CtorOf::Struct, CtorKind::Const) => "unit struct",
227 DefKind::OpaqueTy => "opaque type",
228 DefKind::TyAlias => "type alias",
229 DefKind::TraitAlias => "trait alias",
230 DefKind::AssocTy => "associated type",
231 DefKind::Union => "union",
232 DefKind::Trait => "trait",
233 DefKind::ForeignTy => "foreign type",
234 DefKind::AssocFn => "associated function",
235 DefKind::Const { .. } => "constant",
236 DefKind::AssocConst { .. } => "associated constant",
237 DefKind::TyParam => "type parameter",
238 DefKind::ConstParam => "const parameter",
239 DefKind::Macro(kinds) => kinds.descr(),
240 DefKind::LifetimeParam => "lifetime parameter",
241 DefKind::Use => "import",
242 DefKind::ForeignMod => "foreign module",
243 DefKind::AnonConst => "constant expression",
244 DefKind::Field => "field",
245 DefKind::Impl { .. } => "implementation",
246 DefKind::Closure => "closure",
247 DefKind::ExternCrate => "extern crate",
248 DefKind::GlobalAsm => "global assembly block",
249 DefKind::SyntheticCoroutineBody => "synthetic mir body",
250 DefKind::TestBinderConstraints => "test_binder_constraints!",
251 }
252 }
253
254 pub fn article(&self) -> &'static str {
260 match *self {
261 DefKind::AssocTy
262 | DefKind::AssocConst { .. }
263 | DefKind::AssocFn
264 | DefKind::Enum
265 | DefKind::OpaqueTy
266 | DefKind::Impl { .. }
267 | DefKind::Use
268 | DefKind::ExternCrate => "an",
269 DefKind::Macro(kinds) => kinds.article(),
270 _ => "a",
271 }
272 }
273
274 pub fn ns(&self) -> Option<Namespace> {
275 match self {
276 DefKind::Mod
277 | DefKind::Struct
278 | DefKind::Union
279 | DefKind::Enum
280 | DefKind::Variant
281 | DefKind::Trait
282 | DefKind::TyAlias
283 | DefKind::ForeignTy
284 | DefKind::TraitAlias
285 | DefKind::AssocTy
286 | DefKind::TyParam => Some(Namespace::TypeNS),
287
288 DefKind::Fn
289 | DefKind::Const { .. }
290 | DefKind::ConstParam
291 | DefKind::Static { .. }
292 | DefKind::Ctor(..)
293 | DefKind::AssocFn
294 | DefKind::AssocConst { .. } => Some(Namespace::ValueNS),
295
296 DefKind::Macro(..) => Some(Namespace::MacroNS),
297
298 DefKind::AnonConst
300 | DefKind::Field
301 | DefKind::LifetimeParam
302 | DefKind::ExternCrate
303 | DefKind::Closure
304 | DefKind::Use
305 | DefKind::ForeignMod
306 | DefKind::GlobalAsm
307 | DefKind::Impl { .. }
308 | DefKind::OpaqueTy
309 | DefKind::SyntheticCoroutineBody
310 | DefKind::TestBinderConstraints => None,
311 }
312 }
313
314 pub fn def_path_data(self, name: Option<Symbol>) -> DefPathData {
317 match self {
318 DefKind::Mod
319 | DefKind::Struct
320 | DefKind::Union
321 | DefKind::Enum
322 | DefKind::Variant
323 | DefKind::Trait
324 | DefKind::TyAlias
325 | DefKind::ForeignTy
326 | DefKind::TraitAlias
327 | DefKind::TyParam
328 | DefKind::ExternCrate => DefPathData::TypeNs(name.unwrap()),
329
330 DefKind::AssocTy => DefPathData::TypeNs(name.unwrap()),
333
334 DefKind::Fn
335 | DefKind::Const { .. }
336 | DefKind::ConstParam
337 | DefKind::Static { .. }
338 | DefKind::AssocFn
339 | DefKind::AssocConst { .. }
340 | DefKind::Field => DefPathData::ValueNs(name.unwrap()),
341 DefKind::Macro(..) => DefPathData::MacroNs(name.unwrap()),
342 DefKind::LifetimeParam => DefPathData::LifetimeNs(name.unwrap()),
343 DefKind::Ctor(..) => DefPathData::Ctor,
344 DefKind::Use => DefPathData::Use,
345 DefKind::ForeignMod => DefPathData::ForeignMod,
346 DefKind::AnonConst => DefPathData::AnonConst,
347 DefKind::OpaqueTy => DefPathData::OpaqueTy,
348 DefKind::GlobalAsm => DefPathData::GlobalAsm,
349 DefKind::Impl { .. } => DefPathData::Impl,
350 DefKind::Closure => DefPathData::Closure,
351 DefKind::SyntheticCoroutineBody => DefPathData::SyntheticCoroutineBody,
352 DefKind::TestBinderConstraints => DefPathData::TestBinderConstraints,
353 }
354 }
355
356 pub fn is_assoc(self) -> bool {
357 #[allow(non_exhaustive_omitted_patterns)] match self {
DefKind::AssocConst { .. } | DefKind::AssocFn | DefKind::AssocTy => true,
_ => false,
}matches!(self, DefKind::AssocConst { .. } | DefKind::AssocFn | DefKind::AssocTy)
358 }
359
360 #[inline]
362 pub fn is_module_like(self) -> bool {
363 #[allow(non_exhaustive_omitted_patterns)] match self {
DefKind::Mod | DefKind::Enum | DefKind::Trait => true,
_ => false,
}matches!(self, DefKind::Mod | DefKind::Enum | DefKind::Trait)
364 }
365
366 #[inline]
367 pub fn is_adt(self) -> bool {
368 #[allow(non_exhaustive_omitted_patterns)] match self {
DefKind::Struct | DefKind::Union | DefKind::Enum => true,
_ => false,
}matches!(self, DefKind::Struct | DefKind::Union | DefKind::Enum)
369 }
370
371 #[inline]
372 pub fn is_fn_like(self) -> bool {
373 #[allow(non_exhaustive_omitted_patterns)] match self {
DefKind::Fn | DefKind::AssocFn | DefKind::Closure |
DefKind::SyntheticCoroutineBody => true,
_ => false,
}matches!(
374 self,
375 DefKind::Fn | DefKind::AssocFn | DefKind::Closure | DefKind::SyntheticCoroutineBody
376 )
377 }
378
379 pub fn has_generics(self) -> bool {
381 match self {
382 DefKind::AnonConst
383 | DefKind::AssocConst { .. }
384 | DefKind::AssocFn
385 | DefKind::AssocTy
386 | DefKind::Closure
387 | DefKind::Const { .. }
388 | DefKind::Ctor(..)
389 | DefKind::Enum
390 | DefKind::Field
391 | DefKind::Fn
392 | DefKind::ForeignTy
393 | DefKind::Impl { .. }
394 | DefKind::OpaqueTy
395 | DefKind::Static { .. }
396 | DefKind::Struct
397 | DefKind::SyntheticCoroutineBody
398 | DefKind::Trait
399 | DefKind::TraitAlias
400 | DefKind::TyAlias
401 | DefKind::Union
402 | DefKind::Variant
403 | DefKind::TestBinderConstraints => true,
404 DefKind::ConstParam
405 | DefKind::ExternCrate
406 | DefKind::ForeignMod
407 | DefKind::GlobalAsm
408 | DefKind::LifetimeParam
409 | DefKind::Macro(_)
410 | DefKind::Mod
411 | DefKind::TyParam
412 | DefKind::Use => false,
413 }
414 }
415
416 pub fn has_codegen_attrs(self) -> bool {
418 match self {
419 DefKind::Fn
420 | DefKind::AssocFn
421 | DefKind::Ctor(..)
422 | DefKind::Closure
423 | DefKind::Static { .. }
424 | DefKind::SyntheticCoroutineBody => true,
425 DefKind::Mod
426 | DefKind::Struct
427 | DefKind::Union
428 | DefKind::Enum
429 | DefKind::Variant
430 | DefKind::Trait
431 | DefKind::TyAlias
432 | DefKind::ForeignTy
433 | DefKind::TraitAlias
434 | DefKind::AssocTy
435 | DefKind::Const { .. }
436 | DefKind::AssocConst { .. }
437 | DefKind::Macro(..)
438 | DefKind::Use
439 | DefKind::ForeignMod
440 | DefKind::OpaqueTy
441 | DefKind::Impl { .. }
442 | DefKind::Field
443 | DefKind::TyParam
444 | DefKind::ConstParam
445 | DefKind::LifetimeParam
446 | DefKind::AnonConst
447 | DefKind::GlobalAsm
448 | DefKind::ExternCrate
449 | DefKind::TestBinderConstraints => false,
450 }
451 }
452}
453
454#[derive(#[automatically_derived]
impl<Id: ::core::clone::Clone> ::core::clone::Clone for Res<Id> {
#[inline]
fn clone(&self) -> Res<Id> {
match self {
Res::Def(__self_0, __self_1) =>
Res::Def(::core::clone::Clone::clone(__self_0),
::core::clone::Clone::clone(__self_1)),
Res::PrimTy(__self_0) =>
Res::PrimTy(::core::clone::Clone::clone(__self_0)),
Res::SelfTyParam { trait_: __self_0 } =>
Res::SelfTyParam {
trait_: ::core::clone::Clone::clone(__self_0),
},
Res::SelfTyAlias { alias_to: __self_0, is_trait_impl: __self_1 }
=>
Res::SelfTyAlias {
alias_to: ::core::clone::Clone::clone(__self_0),
is_trait_impl: ::core::clone::Clone::clone(__self_1),
},
Res::SelfCtor(__self_0) =>
Res::SelfCtor(::core::clone::Clone::clone(__self_0)),
Res::Local(__self_0) =>
Res::Local(::core::clone::Clone::clone(__self_0)),
Res::ToolMod => Res::ToolMod,
Res::OpenMod(__self_0) =>
Res::OpenMod(::core::clone::Clone::clone(__self_0)),
Res::NonMacroAttr(__self_0) =>
Res::NonMacroAttr(::core::clone::Clone::clone(__self_0)),
Res::Err => Res::Err,
}
}
}Clone, #[automatically_derived]
impl<Id: ::core::marker::Copy> ::core::marker::Copy for Res<Id> { }Copy, #[automatically_derived]
impl<Id: ::core::cmp::PartialEq> ::core::marker::StructuralPartialEq for
Res<Id> {
}
#[automatically_derived]
impl<Id: ::core::cmp::PartialEq> ::core::cmp::PartialEq for Res<Id> {
#[inline]
fn eq(&self, other: &Res<Id>) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(Res::Def(__self_0, __self_1), Res::Def(__arg1_0, __arg1_1))
=> __self_0 == __arg1_0 && __self_1 == __arg1_1,
(Res::PrimTy(__self_0), Res::PrimTy(__arg1_0)) =>
__self_0 == __arg1_0,
(Res::SelfTyParam { trait_: __self_0 }, Res::SelfTyParam {
trait_: __arg1_0 }) => __self_0 == __arg1_0,
(Res::SelfTyAlias {
alias_to: __self_0, is_trait_impl: __self_1 },
Res::SelfTyAlias {
alias_to: __arg1_0, is_trait_impl: __arg1_1 }) =>
__self_1 == __arg1_1 && __self_0 == __arg1_0,
(Res::SelfCtor(__self_0), Res::SelfCtor(__arg1_0)) =>
__self_0 == __arg1_0,
(Res::Local(__self_0), Res::Local(__arg1_0)) =>
__self_0 == __arg1_0,
(Res::OpenMod(__self_0), Res::OpenMod(__arg1_0)) =>
__self_0 == __arg1_0,
(Res::NonMacroAttr(__self_0), Res::NonMacroAttr(__arg1_0)) =>
__self_0 == __arg1_0,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl<Id: ::core::cmp::Eq> ::core::cmp::Eq for Res<Id> {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<DefKind>;
let _: ::core::cmp::AssertParamIsEq<DefId>;
let _: ::core::cmp::AssertParamIsEq<hir::PrimTy>;
let _: ::core::cmp::AssertParamIsEq<bool>;
let _: ::core::cmp::AssertParamIsEq<Id>;
let _: ::core::cmp::AssertParamIsEq<Symbol>;
let _: ::core::cmp::AssertParamIsEq<NonMacroAttrKind>;
}
}Eq, const _: () =
{
impl<Id, __E: ::rustc_span::SpanEncoder>
::rustc_serialize::Encodable<__E> for Res<Id> where
Id: ::rustc_serialize::Encodable<__E> {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
Res::Def(ref __binding_0, ref __binding_1) => { 0usize }
Res::PrimTy(ref __binding_0) => { 1usize }
Res::SelfTyParam { trait_: ref __binding_0 } => { 2usize }
Res::SelfTyAlias {
alias_to: ref __binding_0, is_trait_impl: ref __binding_1 }
=> {
3usize
}
Res::SelfCtor(ref __binding_0) => { 4usize }
Res::Local(ref __binding_0) => { 5usize }
Res::ToolMod => { 6usize }
Res::OpenMod(ref __binding_0) => { 7usize }
Res::NonMacroAttr(ref __binding_0) => { 8usize }
Res::Err => { 9usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
match *self {
Res::Def(ref __binding_0, ref __binding_1) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
}
Res::PrimTy(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
Res::SelfTyParam { trait_: ref __binding_0 } => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
Res::SelfTyAlias {
alias_to: ref __binding_0, is_trait_impl: ref __binding_1 }
=> {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
::rustc_serialize::Encodable::<__E>::encode(__binding_1,
__encoder);
}
Res::SelfCtor(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
Res::Local(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
Res::ToolMod => {}
Res::OpenMod(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
Res::NonMacroAttr(ref __binding_0) => {
::rustc_serialize::Encodable::<__E>::encode(__binding_0,
__encoder);
}
Res::Err => {}
}
}
}
};Encodable, const _: () =
{
impl<Id, __D: ::rustc_span::SpanDecoder>
::rustc_serialize::Decodable<__D> for Res<Id> where
Id: ::rustc_serialize::Decodable<__D> {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => {
Res::Def(::rustc_serialize::Decodable::decode(__decoder),
::rustc_serialize::Decodable::decode(__decoder))
}
1usize => {
Res::PrimTy(::rustc_serialize::Decodable::decode(__decoder))
}
2usize => {
Res::SelfTyParam {
trait_: ::rustc_serialize::Decodable::decode(__decoder),
}
}
3usize => {
Res::SelfTyAlias {
alias_to: ::rustc_serialize::Decodable::decode(__decoder),
is_trait_impl: ::rustc_serialize::Decodable::decode(__decoder),
}
}
4usize => {
Res::SelfCtor(::rustc_serialize::Decodable::decode(__decoder))
}
5usize => {
Res::Local(::rustc_serialize::Decodable::decode(__decoder))
}
6usize => { Res::ToolMod }
7usize => {
Res::OpenMod(::rustc_serialize::Decodable::decode(__decoder))
}
8usize => {
Res::NonMacroAttr(::rustc_serialize::Decodable::decode(__decoder))
}
9usize => { Res::Err }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Res`, expected 0..10, actual {0}",
n));
}
}
}
}
};Decodable, #[automatically_derived]
impl<Id: ::core::hash::Hash> ::core::hash::Hash for Res<Id> {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state);
match self {
Res::Def(__self_0, __self_1) => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
Res::PrimTy(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
Res::SelfTyParam { trait_: __self_0 } =>
::core::hash::Hash::hash(__self_0, state),
Res::SelfTyAlias { alias_to: __self_0, is_trait_impl: __self_1 }
=> {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
Res::SelfCtor(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
Res::Local(__self_0) => ::core::hash::Hash::hash(__self_0, state),
Res::OpenMod(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
Res::NonMacroAttr(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
_ => {}
}
}
}Hash, #[automatically_derived]
impl<Id: ::core::fmt::Debug> ::core::fmt::Debug for Res<Id> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
Res::Def(__self_0, __self_1) =>
::core::fmt::Formatter::debug_tuple_field2_finish(f, "Def",
__self_0, &__self_1),
Res::PrimTy(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "PrimTy",
&__self_0),
Res::SelfTyParam { trait_: __self_0 } =>
::core::fmt::Formatter::debug_struct_field1_finish(f,
"SelfTyParam", "trait_", &__self_0),
Res::SelfTyAlias { alias_to: __self_0, is_trait_impl: __self_1 }
=>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"SelfTyAlias", "alias_to", __self_0, "is_trait_impl",
&__self_1),
Res::SelfCtor(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"SelfCtor", &__self_0),
Res::Local(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Local",
&__self_0),
Res::ToolMod => ::core::fmt::Formatter::write_str(f, "ToolMod"),
Res::OpenMod(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"OpenMod", &__self_0),
Res::NonMacroAttr(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"NonMacroAttr", &__self_0),
Res::Err => ::core::fmt::Formatter::write_str(f, "Err"),
}
}
}Debug, const _: () =
{
impl<Id> ::rustc_data_structures::stable_hash::StableHash for Res<Id>
where Id: ::rustc_data_structures::stable_hash::StableHash {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Res::Def(ref __binding_0, ref __binding_1) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
Res::PrimTy(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Res::SelfTyParam { trait_: ref __binding_0 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Res::SelfTyAlias {
alias_to: ref __binding_0, is_trait_impl: ref __binding_1 }
=> {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
}
Res::SelfCtor(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Res::Local(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Res::ToolMod => {}
Res::OpenMod(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Res::NonMacroAttr(ref __binding_0) => {
{ __binding_0.stable_hash(__hcx, __hasher); }
}
Res::Err => {}
}
}
}
};StableHash)]
483pub enum Res<Id = HirId> {
484 Def(DefKind, DefId),
488
489 PrimTy(hir::PrimTy),
494
495 SelfTyParam {
501 trait_: DefId,
503 },
504
505 SelfTyAlias {
534 alias_to: DefId,
537
538 is_trait_impl: bool,
540 },
541
542 SelfCtor(DefId),
550
551 Local(Id),
555
556 ToolMod,
560
561 OpenMod(Symbol),
567
568 NonMacroAttr(NonMacroAttrKind), Err,
582}
583
584impl<Id> IntoDiagArg for Res<Id> {
585 fn into_diag_arg(self, _: &mut Option<std::path::PathBuf>) -> DiagArgValue {
586 DiagArgValue::Str(Cow::Borrowed(self.descr()))
587 }
588}
589
590#[derive(#[automatically_derived]
impl ::core::marker::Copy for PartialRes { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for PartialRes { }
#[automatically_derived]
impl ::core::clone::Clone for PartialRes {
#[inline]
fn clone(&self) -> PartialRes {
let _: ::core::clone::AssertParamIsClone<Res<NodeId>>;
let _: ::core::clone::AssertParamIsClone<usize>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for PartialRes {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f, "PartialRes",
"base_res", &self.base_res, "unresolved_segments",
&&self.unresolved_segments)
}
}Debug)]
607pub struct PartialRes {
608 base_res: Res<NodeId>,
609 unresolved_segments: usize,
610}
611
612impl PartialRes {
613 #[inline]
614 pub fn new(base_res: Res<NodeId>) -> Self {
615 PartialRes { base_res, unresolved_segments: 0 }
616 }
617
618 #[inline]
619 pub fn with_unresolved_segments(base_res: Res<NodeId>, mut unresolved_segments: usize) -> Self {
620 if base_res == Res::Err {
621 unresolved_segments = 0
622 }
623 PartialRes { base_res, unresolved_segments }
624 }
625
626 #[inline]
627 pub fn base_res(&self) -> Res<NodeId> {
628 self.base_res
629 }
630
631 #[inline]
632 pub fn unresolved_segments(&self) -> usize {
633 self.unresolved_segments
634 }
635
636 #[inline]
637 pub fn full_res(&self) -> Option<Res<NodeId>> {
638 (self.unresolved_segments == 0).then_some(self.base_res)
639 }
640
641 #[inline]
642 pub fn expect_full_res(&self) -> Res<NodeId> {
643 self.full_res().expect("unexpected unresolved segments")
644 }
645}
646
647#[derive(#[automatically_derived]
impl ::core::marker::Copy for Namespace { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for Namespace { }
#[automatically_derived]
impl ::core::clone::Clone for Namespace {
#[inline]
fn clone(&self) -> Namespace { *self }
}Clone, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for Namespace { }
#[automatically_derived]
impl ::core::cmp::PartialEq for Namespace {
#[inline]
fn eq(&self, other: &Namespace) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Namespace {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialOrd for Namespace {
#[inline]
fn partial_cmp(&self, other: &Namespace)
-> ::core::option::Option<::core::cmp::Ordering> {
::core::option::Option::Some(::core::cmp::Ord::cmp(self, other))
}
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Ord for Namespace {
#[inline]
fn cmp(&self, other: &Namespace) -> ::core::cmp::Ordering {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
}
}Ord, #[automatically_derived]
impl ::core::hash::Hash for Namespace {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state)
}
}Hash, #[automatically_derived]
impl ::core::fmt::Debug for Namespace {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::write_str(f,
match self {
Namespace::TypeNS => "TypeNS",
Namespace::ValueNS => "ValueNS",
Namespace::MacroNS => "MacroNS",
})
}
}Debug, const _: () =
{
impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
for Namespace {
fn encode(&self, __encoder: &mut __E) {
let disc =
match *self {
Namespace::TypeNS => { 0usize }
Namespace::ValueNS => { 1usize }
Namespace::MacroNS => { 2usize }
};
::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
}
}
};Encodable, const _: () =
{
impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
for Namespace {
fn decode(__decoder: &mut __D) -> Self {
match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
{
0usize => { Namespace::TypeNS }
1usize => { Namespace::ValueNS }
2usize => { Namespace::MacroNS }
n => {
::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Namespace`, expected 0..3, actual {0}",
n));
}
}
}
}
};Decodable)]
650#[derive(const _: () =
{
impl ::rustc_data_structures::stable_hash::StableHash for Namespace {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
match *self {
Namespace::TypeNS => {}
Namespace::ValueNS => {}
Namespace::MacroNS => {}
}
}
}
};StableHash)]
651pub enum Namespace {
652 TypeNS,
658 ValueNS,
660 MacroNS,
664}
665
666impl Namespace {
667 pub fn descr(self) -> &'static str {
669 match self {
670 Self::TypeNS => "type",
671 Self::ValueNS => "value",
672 Self::MacroNS => "macro",
673 }
674 }
675}
676
677impl IntoDiagArg for Namespace {
678 fn into_diag_arg(self, _: &mut Option<std::path::PathBuf>) -> DiagArgValue {
679 DiagArgValue::Str(Cow::Borrowed(self.descr()))
680 }
681}
682
683#[derive(#[automatically_derived]
impl<T: ::core::marker::Copy> ::core::marker::Copy for PerNS<T> { }Copy, #[automatically_derived]
impl<T: ::core::clone::Clone> ::core::clone::Clone for PerNS<T> {
#[inline]
fn clone(&self) -> PerNS<T> {
PerNS {
value_ns: ::core::clone::Clone::clone(&self.value_ns),
type_ns: ::core::clone::Clone::clone(&self.type_ns),
macro_ns: ::core::clone::Clone::clone(&self.macro_ns),
}
}
}Clone, #[automatically_derived]
impl<T: ::core::fmt::Debug> ::core::fmt::Debug for PerNS<T> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field3_finish(f, "PerNS",
"value_ns", &self.value_ns, "type_ns", &self.type_ns, "macro_ns",
&&self.macro_ns)
}
}Debug, const _: () =
{
impl<T> ::rustc_data_structures::stable_hash::StableHash for PerNS<T>
where T: ::rustc_data_structures::stable_hash::StableHash {
#[inline]
fn stable_hash<__Hcx: ::rustc_data_structures::stable_hash::StableHashCtxt>(&self,
__hcx: &mut __Hcx,
__hasher:
&mut ::rustc_data_structures::stable_hash::StableHasher) {
match *self {
PerNS {
value_ns: ref __binding_0,
type_ns: ref __binding_1,
macro_ns: ref __binding_2 } => {
{ __binding_0.stable_hash(__hcx, __hasher); }
{ __binding_1.stable_hash(__hcx, __hasher); }
{ __binding_2.stable_hash(__hcx, __hasher); }
}
}
}
}
};StableHash)]
685#[derive_const(#[automatically_derived]
const impl<T: [const] ::core::default::Default> ::core::default::Default for
PerNS<T> {
#[inline]
fn default() -> PerNS<T> {
PerNS {
value_ns: ::core::default::Default::default(),
type_ns: ::core::default::Default::default(),
macro_ns: ::core::default::Default::default(),
}
}
}Default)]
686pub struct PerNS<T> {
687 pub value_ns: T,
688 pub type_ns: T,
689 pub macro_ns: T,
690}
691
692impl<T> PerNS<T> {
693 pub fn map<U, F: FnMut(T) -> U>(self, mut f: F) -> PerNS<U> {
694 PerNS { value_ns: f(self.value_ns), type_ns: f(self.type_ns), macro_ns: f(self.macro_ns) }
695 }
696
697 pub fn into_iter(self) -> IntoIter<T, 3> {
701 [self.value_ns, self.type_ns, self.macro_ns].into_iter()
702 }
703
704 pub fn iter(&self) -> IntoIter<&T, 3> {
708 [&self.value_ns, &self.type_ns, &self.macro_ns].into_iter()
709 }
710}
711
712impl<T> ::std::ops::Index<Namespace> for PerNS<T> {
713 type Output = T;
714
715 fn index(&self, ns: Namespace) -> &T {
716 match ns {
717 Namespace::ValueNS => &self.value_ns,
718 Namespace::TypeNS => &self.type_ns,
719 Namespace::MacroNS => &self.macro_ns,
720 }
721 }
722}
723
724impl<T> ::std::ops::IndexMut<Namespace> for PerNS<T> {
725 fn index_mut(&mut self, ns: Namespace) -> &mut T {
726 match ns {
727 Namespace::ValueNS => &mut self.value_ns,
728 Namespace::TypeNS => &mut self.type_ns,
729 Namespace::MacroNS => &mut self.macro_ns,
730 }
731 }
732}
733
734impl<T> PerNS<Option<T>> {
735 pub fn is_empty(&self) -> bool {
737 self.type_ns.is_none() && self.value_ns.is_none() && self.macro_ns.is_none()
738 }
739
740 pub fn present_items(self) -> impl Iterator<Item = T> {
746 [self.type_ns, self.value_ns, self.macro_ns].into_iter().flatten()
747 }
748}
749
750impl CtorKind {
751 pub fn from_ast(vdata: &ast::VariantData) -> Option<(CtorKind, NodeId)> {
752 match *vdata {
753 ast::VariantData::Tuple(_, node_id) => Some((CtorKind::Fn, node_id)),
754 ast::VariantData::Unit(node_id) => Some((CtorKind::Const, node_id)),
755 ast::VariantData::Struct { .. } => None,
756 }
757 }
758}
759
760impl NonMacroAttrKind {
761 pub fn descr(self) -> &'static str {
762 match self {
763 NonMacroAttrKind::Builtin(..) => "built-in attribute",
764 NonMacroAttrKind::Tool => "tool attribute",
765 NonMacroAttrKind::DeriveHelper | NonMacroAttrKind::DeriveHelperCompat => {
766 "derive helper attribute"
767 }
768 }
769 }
770
771 pub fn article(self) -> &'static str {
774 "a"
775 }
776
777 pub fn is_used(self) -> bool {
779 match self {
780 NonMacroAttrKind::Tool
781 | NonMacroAttrKind::DeriveHelper
782 | NonMacroAttrKind::DeriveHelperCompat => true,
783 NonMacroAttrKind::Builtin(..) => false,
784 }
785 }
786}
787
788impl<Id> Res<Id> {
789 pub fn def_id(&self) -> DefId
791 where
792 Id: Debug,
793 {
794 self.opt_def_id().unwrap_or_else(|| {
::core::panicking::panic_fmt(format_args!("attempted .def_id() on invalid res: {0:?}",
self));
}panic!("attempted .def_id() on invalid res: {self:?}"))
795 }
796
797 pub fn opt_def_id(&self) -> Option<DefId> {
799 match *self {
800 Res::Def(_, id) => Some(id),
801
802 Res::Local(..)
803 | Res::PrimTy(..)
804 | Res::SelfTyParam { .. }
805 | Res::SelfTyAlias { .. }
806 | Res::SelfCtor(..)
807 | Res::ToolMod
808 | Res::OpenMod(..)
809 | Res::NonMacroAttr(..)
810 | Res::Err => None,
811 }
812 }
813
814 pub fn mod_def_id(&self) -> Option<DefId> {
816 match *self {
817 Res::Def(DefKind::Mod, id) => Some(id),
818 _ => None,
819 }
820 }
821
822 #[inline]
824 pub fn module_like_def_id(&self) -> Option<DefId> {
825 match self {
826 Res::Def(def_kind, def_id) if def_kind.is_module_like() => Some(*def_id),
827 _ => None,
828 }
829 }
830
831 pub fn descr(&self) -> &'static str {
833 match *self {
834 Res::Def(kind, def_id) => kind.descr(def_id),
835 Res::SelfCtor(..) => "self constructor",
836 Res::PrimTy(..) => "builtin type",
837 Res::Local(..) => "local variable",
838 Res::SelfTyParam { .. } | Res::SelfTyAlias { .. } => "self type",
839 Res::ToolMod => "tool module",
840 Res::OpenMod(..) => "namespaced crate",
841 Res::NonMacroAttr(attr_kind) => attr_kind.descr(),
842 Res::Err => "unresolved item",
843 }
844 }
845
846 pub fn article(&self) -> &'static str {
848 match *self {
849 Res::Def(kind, _) => kind.article(),
850 Res::NonMacroAttr(kind) => kind.article(),
851 Res::Err => "an",
852 _ => "a",
853 }
854 }
855
856 pub fn map_id<R>(self, mut map: impl FnMut(Id) -> R) -> Res<R> {
857 match self {
858 Res::Def(kind, id) => Res::Def(kind, id),
859 Res::SelfCtor(id) => Res::SelfCtor(id),
860 Res::PrimTy(id) => Res::PrimTy(id),
861 Res::Local(id) => Res::Local(map(id)),
862 Res::SelfTyParam { trait_ } => Res::SelfTyParam { trait_ },
863 Res::SelfTyAlias { alias_to, is_trait_impl } => {
864 Res::SelfTyAlias { alias_to, is_trait_impl }
865 }
866 Res::ToolMod => Res::ToolMod,
867 Res::OpenMod(sym) => Res::OpenMod(sym),
868 Res::NonMacroAttr(attr_kind) => Res::NonMacroAttr(attr_kind),
869 Res::Err => Res::Err,
870 }
871 }
872
873 pub fn apply_id<R, E>(self, mut map: impl FnMut(Id) -> Result<R, E>) -> Result<Res<R>, E> {
874 Ok(match self {
875 Res::Def(kind, id) => Res::Def(kind, id),
876 Res::SelfCtor(id) => Res::SelfCtor(id),
877 Res::PrimTy(id) => Res::PrimTy(id),
878 Res::Local(id) => Res::Local(map(id)?),
879 Res::SelfTyParam { trait_ } => Res::SelfTyParam { trait_ },
880 Res::SelfTyAlias { alias_to, is_trait_impl } => {
881 Res::SelfTyAlias { alias_to, is_trait_impl }
882 }
883 Res::ToolMod => Res::ToolMod,
884 Res::OpenMod(sym) => Res::OpenMod(sym),
885 Res::NonMacroAttr(attr_kind) => Res::NonMacroAttr(attr_kind),
886 Res::Err => Res::Err,
887 })
888 }
889
890 #[track_caller]
891 pub fn expect_non_local<OtherId>(self) -> Res<OtherId> {
892 self.map_id(
893 #[track_caller]
894 |_| { ::core::panicking::panic_fmt(format_args!("unexpected `Res::Local`")); }panic!("unexpected `Res::Local`"),
895 )
896 }
897
898 pub fn macro_kinds(self) -> Option<MacroKinds> {
899 match self {
900 Res::Def(DefKind::Macro(kinds), _) => Some(kinds),
901 Res::NonMacroAttr(..) => Some(MacroKinds::ATTR),
902 _ => None,
903 }
904 }
905
906 pub fn ns(&self) -> Option<Namespace> {
908 match self {
909 Res::Def(kind, ..) => kind.ns(),
910 Res::PrimTy(..)
911 | Res::SelfTyParam { .. }
912 | Res::SelfTyAlias { .. }
913 | Res::ToolMod
914 | Res::OpenMod(..) => Some(Namespace::TypeNS),
915 Res::SelfCtor(..) | Res::Local(..) => Some(Namespace::ValueNS),
916 Res::NonMacroAttr(..) => Some(Namespace::MacroNS),
917 Res::Err => None,
918 }
919 }
920
921 pub fn matches_ns(&self, ns: Namespace) -> bool {
923 self.ns().is_none_or(|actual_ns| actual_ns == ns)
924 }
925
926 pub fn expected_in_tuple_struct_pat(&self) -> bool {
928 #[allow(non_exhaustive_omitted_patterns)] match self {
Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) | Res::SelfCtor(..) => true,
_ => false,
}matches!(self, Res::Def(DefKind::Ctor(_, CtorKind::Fn), _) | Res::SelfCtor(..))
929 }
930
931 pub fn expected_in_unit_struct_pat(&self) -> bool {
933 #[allow(non_exhaustive_omitted_patterns)] match self {
Res::Def(DefKind::Ctor(_, CtorKind::Const), _) | Res::SelfCtor(..) =>
true,
_ => false,
}matches!(self, Res::Def(DefKind::Ctor(_, CtorKind::Const), _) | Res::SelfCtor(..))
934 }
935}
936
937#[derive(#[automatically_derived]
impl ::core::marker::Copy for LifetimeRes { }Copy, #[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for LifetimeRes { }
#[automatically_derived]
impl ::core::clone::Clone for LifetimeRes {
#[inline]
fn clone(&self) -> LifetimeRes {
let _: ::core::clone::AssertParamIsClone<LocalDefId>;
let _: ::core::clone::AssertParamIsClone<NodeId>;
let _: ::core::clone::AssertParamIsClone<hir::MissingLifetimeKind>;
let _: ::core::clone::AssertParamIsClone<rustc_span::ErrorGuaranteed>;
*self
}
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for LifetimeRes {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
LifetimeRes::Param { param: __self_0, binder: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f, "Param",
"param", __self_0, "binder", &__self_1),
LifetimeRes::Fresh { param: __self_0, kind: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f, "Fresh",
"param", __self_0, "kind", &__self_1),
LifetimeRes::Infer =>
::core::fmt::Formatter::write_str(f, "Infer"),
LifetimeRes::Static =>
::core::fmt::Formatter::write_str(f, "Static"),
LifetimeRes::Error(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Error",
&__self_0),
LifetimeRes::ElidedAnchor { start: __self_0, end: __self_1 } =>
::core::fmt::Formatter::debug_struct_field2_finish(f,
"ElidedAnchor", "start", __self_0, "end", &__self_1),
}
}
}Debug, #[automatically_derived]
impl ::core::marker::StructuralPartialEq for LifetimeRes { }
#[automatically_derived]
impl ::core::cmp::PartialEq for LifetimeRes {
#[inline]
fn eq(&self, other: &LifetimeRes) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr &&
match (self, other) {
(LifetimeRes::Param { param: __self_0, binder: __self_1 },
LifetimeRes::Param { param: __arg1_0, binder: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
(LifetimeRes::Fresh { param: __self_0, kind: __self_1 },
LifetimeRes::Fresh { param: __arg1_0, kind: __arg1_1 }) =>
__self_0 == __arg1_0 && __self_1 == __arg1_1,
(LifetimeRes::Error(__self_0), LifetimeRes::Error(__arg1_0))
=> __self_0 == __arg1_0,
(LifetimeRes::ElidedAnchor { start: __self_0, end: __self_1 },
LifetimeRes::ElidedAnchor { start: __arg1_0, end: __arg1_1
}) => __self_0 == __arg1_0 && __self_1 == __arg1_1,
_ => true,
}
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for LifetimeRes {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {
let _: ::core::cmp::AssertParamIsEq<LocalDefId>;
let _: ::core::cmp::AssertParamIsEq<NodeId>;
let _: ::core::cmp::AssertParamIsEq<hir::MissingLifetimeKind>;
let _: ::core::cmp::AssertParamIsEq<rustc_span::ErrorGuaranteed>;
}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for LifetimeRes {
#[inline]
fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
let __self_discr = ::core::intrinsics::discriminant_value(self);
::core::hash::Hash::hash(&__self_discr, state);
match self {
LifetimeRes::Param { param: __self_0, binder: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
LifetimeRes::Fresh { param: __self_0, kind: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
LifetimeRes::Error(__self_0) =>
::core::hash::Hash::hash(__self_0, state),
LifetimeRes::ElidedAnchor { start: __self_0, end: __self_1 } => {
::core::hash::Hash::hash(__self_0, state);
::core::hash::Hash::hash(__self_1, state)
}
_ => {}
}
}
}Hash)]
939pub enum LifetimeRes {
940 Param {
942 param: LocalDefId,
944 binder: NodeId,
952 },
953 Fresh {
955 param: NodeId,
959 kind: hir::MissingLifetimeKind,
961 },
962 Infer,
965 Static,
967 Error(rustc_span::ErrorGuaranteed),
969 ElidedAnchor { start: NodeId, end: NodeId },
971}
972
973pub type DocLinkResMap = FxIndexMap<(Symbol, Namespace), Option<Res<NodeId>>>;