diff --git a/src/loombox.rs b/src/loombox.rs index acdc68f..4f902a9 100644 --- a/src/loombox.rs +++ b/src/loombox.rs @@ -65,25 +65,25 @@ impl core::ops::DerefMut for Box { impl borrow::Borrow for Box { fn borrow(&self) -> &T { - &**self + self } } impl borrow::BorrowMut for Box { fn borrow_mut(&mut self) -> &mut T { - &mut **self + self } } impl AsRef for Box { fn as_ref(&self) -> &T { - &**self + self } } impl AsMut for Box { fn as_mut(&mut self) -> &mut T { - &mut **self + self } }