Upgrade Rust toolchain to 1.83 (#14677)

This commit is contained in:
Micha Reiser 2024-11-29 13:05:05 +01:00 committed by GitHub
parent a6402fb51e
commit b63c2e126b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
63 changed files with 127 additions and 127 deletions

View file

@ -446,7 +446,7 @@ impl<'a> Deref for Bindings<'a> {
}
}
impl<'a> DerefMut for Bindings<'a> {
impl DerefMut for Bindings<'_> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
@ -749,7 +749,7 @@ pub enum AnyImport<'a, 'ast> {
FromImport(&'a FromImport<'ast>),
}
impl<'a, 'ast> Imported<'ast> for AnyImport<'a, 'ast> {
impl<'ast> Imported<'ast> for AnyImport<'_, 'ast> {
fn qualified_name(&self) -> &QualifiedName<'ast> {
match self {
Self::Import(import) => import.qualified_name(),