cleanup: use short AT notation (Ty::Item
instead of <Ty as Trait>::Item
)
This commit is contained in:
parent
8efd9901b6
commit
ec133fed40
5 changed files with 84 additions and 87 deletions
|
@ -1134,7 +1134,7 @@ impl<'a, T: ?Sized> Deref for &'a mut T {
|
|||
pub trait DerefMut: Deref {
|
||||
/// The method called to mutably dereference a value
|
||||
#[stable]
|
||||
fn deref_mut<'a>(&'a mut self) -> &'a mut <Self as Deref>::Target;
|
||||
fn deref_mut<'a>(&'a mut self) -> &'a mut Self::Target;
|
||||
}
|
||||
|
||||
#[stable]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue