@@ -11,67 +11,7 @@ use crate::{DebruijnIndex, DebugWithInfcx, InferCtxtLike, WithInfcx};
11
11
12
12
use self :: TyKind :: * ;
13
13
14
- /// The movability of a coroutine / closure literal:
15
- /// whether a coroutine contains self-references, causing it to be `!Unpin`.
16
- #[ derive( Clone , PartialEq , Eq , PartialOrd , Ord , Hash , Debug , Copy ) ]
17
- #[ cfg_attr( feature = "nightly" , derive( Encodable , Decodable , HashStable_NoContext ) ) ]
18
- pub enum Movability {
19
- /// May contain self-references, `!Unpin`.
20
- Static ,
21
- /// Must not contain self-references, `Unpin`.
22
- Movable ,
23
- }
24
-
25
- #[ derive( Clone , PartialEq , Eq , PartialOrd , Ord , Hash , Debug , Copy ) ]
26
- #[ cfg_attr( feature = "nightly" , derive( Encodable , Decodable , HashStable_NoContext ) ) ]
27
- pub enum Mutability {
28
- // N.B. Order is deliberate, so that Not < Mut
29
- Not ,
30
- Mut ,
31
- }
32
-
33
- impl Mutability {
34
- pub fn invert ( self ) -> Self {
35
- match self {
36
- Mutability :: Mut => Mutability :: Not ,
37
- Mutability :: Not => Mutability :: Mut ,
38
- }
39
- }
40
-
41
- /// Returns `""` (empty string) or `"mut "` depending on the mutability.
42
- pub fn prefix_str ( self ) -> & ' static str {
43
- match self {
44
- Mutability :: Mut => "mut " ,
45
- Mutability :: Not => "" ,
46
- }
47
- }
48
-
49
- /// Returns `"&"` or `"&mut "` depending on the mutability.
50
- pub fn ref_prefix_str ( self ) -> & ' static str {
51
- match self {
52
- Mutability :: Not => "&" ,
53
- Mutability :: Mut => "&mut " ,
54
- }
55
- }
56
-
57
- /// Returns `""` (empty string) or `"mutably "` depending on the mutability.
58
- pub fn mutably_str ( self ) -> & ' static str {
59
- match self {
60
- Mutability :: Not => "" ,
61
- Mutability :: Mut => "mutably " ,
62
- }
63
- }
64
-
65
- /// Return `true` if self is mutable
66
- pub fn is_mut ( self ) -> bool {
67
- matches ! ( self , Self :: Mut )
68
- }
69
-
70
- /// Return `true` if self is **not** mutable
71
- pub fn is_not ( self ) -> bool {
72
- matches ! ( self , Self :: Not )
73
- }
74
- }
14
+ use rustc_ast_ir:: Mutability ;
75
15
76
16
/// Specifies how a trait object is represented.
77
17
#[ derive( Clone , Copy , PartialEq , Eq , PartialOrd , Ord , Hash , Debug ) ]
0 commit comments