@@ -200,6 +200,14 @@ pub trait PartialEq<Rhs: ?Sized = Self> {
200
200
fn ne ( & self , other : & Rhs ) -> bool { !self . eq ( other) }
201
201
}
202
202
203
+ /// Derive macro generating an impl of the trait `PartialEq`.
204
+ #[ cfg( not( bootstrap) ) ]
205
+ #[ rustc_builtin_macro]
206
+ #[ rustc_macro_transparency = "semitransparent" ]
207
+ #[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
208
+ #[ allow_internal_unstable( core_intrinsics) ]
209
+ pub macro PartialEq ( $item: item) { /* compiler built-in */ }
210
+
203
211
/// Trait for equality comparisons which are [equivalence relations](
204
212
/// https://en.wikipedia.org/wiki/Equivalence_relation).
205
213
///
@@ -256,6 +264,14 @@ pub trait Eq: PartialEq<Self> {
256
264
fn assert_receiver_is_total_eq ( & self ) { }
257
265
}
258
266
267
+ /// Derive macro generating an impl of the trait `Eq`.
268
+ #[ cfg( not( bootstrap) ) ]
269
+ #[ rustc_builtin_macro]
270
+ #[ rustc_macro_transparency = "semitransparent" ]
271
+ #[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
272
+ #[ allow_internal_unstable( core_intrinsics, derive_eq) ]
273
+ pub macro Eq ( $item: item) { /* compiler built-in */ }
274
+
259
275
// FIXME: this struct is used solely by #[derive] to
260
276
// assert that every component of a type implements Eq.
261
277
//
@@ -600,6 +616,14 @@ pub trait Ord: Eq + PartialOrd<Self> {
600
616
}
601
617
}
602
618
619
+ /// Derive macro generating an impl of the trait `Ord`.
620
+ #[ cfg( not( bootstrap) ) ]
621
+ #[ rustc_builtin_macro]
622
+ #[ rustc_macro_transparency = "semitransparent" ]
623
+ #[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
624
+ #[ allow_internal_unstable( core_intrinsics) ]
625
+ pub macro Ord ( $item: item) { /* compiler built-in */ }
626
+
603
627
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
604
628
impl Eq for Ordering { }
605
629
@@ -842,6 +866,14 @@ pub trait PartialOrd<Rhs: ?Sized = Self>: PartialEq<Rhs> {
842
866
}
843
867
}
844
868
869
+ /// Derive macro generating an impl of the trait `PartialOrd`.
870
+ #[ cfg( not( bootstrap) ) ]
871
+ #[ rustc_builtin_macro]
872
+ #[ rustc_macro_transparency = "semitransparent" ]
873
+ #[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
874
+ #[ allow_internal_unstable( core_intrinsics) ]
875
+ pub macro PartialOrd ( $item: item) { /* compiler built-in */ }
876
+
845
877
/// Compares and returns the minimum of two values.
846
878
///
847
879
/// Returns the first argument if the comparison determines them to be equal.
0 commit comments