From 238590aa9fdfe2aac04bb96abad2f2d2feb3101a Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Thu, 17 Nov 2022 22:59:10 -0300 Subject: chore: use Rust 1.65.0 (#16688) --- core/async_cell.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'core/async_cell.rs') diff --git a/core/async_cell.rs b/core/async_cell.rs index ea6cac831..e643af782 100644 --- a/core/async_cell.rs +++ b/core/async_cell.rs @@ -220,13 +220,13 @@ impl Deref for RcRef { impl Borrow for RcRef { fn borrow(&self) -> &T { - &**self + self } } impl AsRef for RcRef { fn as_ref(&self) -> &T { - &**self + self } } @@ -478,13 +478,13 @@ mod internal { impl Borrow for AsyncBorrowImpl { fn borrow(&self) -> &T { - &**self + self } } impl AsRef for AsyncBorrowImpl { fn as_ref(&self) -> &T { - &**self + self } } @@ -500,13 +500,13 @@ mod internal { impl BorrowMut for AsyncBorrowImpl { fn borrow_mut(&mut self) -> &mut T { - &mut **self + self } } impl AsMut for AsyncBorrowImpl { fn as_mut(&mut self) -> &mut T { - &mut **self + self } } -- cgit v1.2.3