1
Fork 0

rustc_data_structures deref in a more humane way

This commit is contained in:
Maybe Waffle 2022-11-29 11:01:46 +00:00
parent f2b97a8bfe
commit 083ef45458

View file

@ -899,25 +899,25 @@ unsafe impl<O, T: ?Sized> StableAddress for OwningRef<O, T> {}
impl<O, T: ?Sized> AsRef<T> for OwningRef<O, T> { impl<O, T: ?Sized> AsRef<T> for OwningRef<O, T> {
fn as_ref(&self) -> &T { fn as_ref(&self) -> &T {
&*self self
} }
} }
impl<O, T: ?Sized> AsRef<T> for OwningRefMut<O, T> { impl<O, T: ?Sized> AsRef<T> for OwningRefMut<O, T> {
fn as_ref(&self) -> &T { fn as_ref(&self) -> &T {
&*self self
} }
} }
impl<O, T: ?Sized> AsMut<T> for OwningRefMut<O, T> { impl<O, T: ?Sized> AsMut<T> for OwningRefMut<O, T> {
fn as_mut(&mut self) -> &mut T { fn as_mut(&mut self) -> &mut T {
&mut *self self
} }
} }
impl<O, T: ?Sized> Borrow<T> for OwningRef<O, T> { impl<O, T: ?Sized> Borrow<T> for OwningRef<O, T> {
fn borrow(&self) -> &T { fn borrow(&self) -> &T {
&*self self
} }
} }
@ -1021,7 +1021,7 @@ where
T: PartialEq, T: PartialEq,
{ {
fn eq(&self, other: &Self) -> bool { fn eq(&self, other: &Self) -> bool {
(&*self as &T).eq(&*other as &T) self.deref().eq(other.deref())
} }
} }
@ -1032,7 +1032,7 @@ where
T: PartialOrd, T: PartialOrd,
{ {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> { fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
(&*self as &T).partial_cmp(&*other as &T) self.deref().partial_cmp(other.deref())
} }
} }
@ -1041,7 +1041,7 @@ where
T: Ord, T: Ord,
{ {
fn cmp(&self, other: &Self) -> Ordering { fn cmp(&self, other: &Self) -> Ordering {
(&*self as &T).cmp(&*other as &T) self.deref().cmp(other.deref())
} }
} }
@ -1050,7 +1050,7 @@ where
T: Hash, T: Hash,
{ {
fn hash<H: Hasher>(&self, state: &mut H) { fn hash<H: Hasher>(&self, state: &mut H) {
(&*self as &T).hash(state); self.deref().hash(state);
} }
} }
@ -1059,7 +1059,7 @@ where
T: PartialEq, T: PartialEq,
{ {
fn eq(&self, other: &Self) -> bool { fn eq(&self, other: &Self) -> bool {
(&*self as &T).eq(&*other as &T) self.deref().eq(other.deref())
} }
} }
@ -1070,7 +1070,7 @@ where
T: PartialOrd, T: PartialOrd,
{ {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> { fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
(&*self as &T).partial_cmp(&*other as &T) self.deref().partial_cmp(other.deref())
} }
} }
@ -1079,7 +1079,7 @@ where
T: Ord, T: Ord,
{ {
fn cmp(&self, other: &Self) -> Ordering { fn cmp(&self, other: &Self) -> Ordering {
(&*self as &T).cmp(&*other as &T) self.deref().cmp(other.deref())
} }
} }
@ -1088,7 +1088,7 @@ where
T: Hash, T: Hash,
{ {
fn hash<H: Hasher>(&self, state: &mut H) { fn hash<H: Hasher>(&self, state: &mut H) {
(&*self as &T).hash(state); self.deref().hash(state);
} }
} }