ProjectionElem and UnOp/BinOp dont need to be PartialOrd/Ord
This commit is contained in:
parent
473ae00839
commit
c8233a4c6f
1 changed files with 3 additions and 3 deletions
|
|
@ -1094,7 +1094,7 @@ pub struct Place<'tcx> {
|
|||
pub projection: &'tcx List<PlaceElem<'tcx>>,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
|
||||
#[derive(TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
|
||||
pub enum ProjectionElem<V, T> {
|
||||
Deref,
|
||||
|
|
@ -1468,7 +1468,7 @@ pub enum NullOp<'tcx> {
|
|||
UbChecks,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
|
||||
#[derive(HashStable, TyEncodable, TyDecodable, TypeFoldable, TypeVisitable)]
|
||||
pub enum UnOp {
|
||||
/// The `!` operator for logical inversion
|
||||
|
|
@ -1486,7 +1486,7 @@ pub enum UnOp {
|
|||
PtrMetadata,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Debug, PartialEq, PartialOrd, Ord, Eq, Hash)]
|
||||
#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
|
||||
#[derive(TyEncodable, TyDecodable, HashStable, TypeFoldable, TypeVisitable)]
|
||||
pub enum BinOp {
|
||||
/// The `+` operator (addition)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue