@@ -60,9 +60,7 @@ pub trait AnyEq: Any + 'static {
60
60
61
61
impl < T : Any + PartialEq > AnyEq for T {
62
62
fn equals ( & self , other : & dyn Any ) -> bool {
63
- other
64
- . downcast_ref :: < Self > ( )
65
- . map_or ( false , |that| self == that)
63
+ other. downcast_ref :: < Self > ( ) == Some ( self )
66
64
}
67
65
fn as_any ( & self ) -> & dyn Any {
68
66
self
@@ -84,7 +82,7 @@ pub enum FluentValue<'source> {
84
82
Error ,
85
83
}
86
84
87
- impl < ' s > PartialEq for FluentValue < ' s > {
85
+ impl PartialEq for FluentValue < ' _ > {
88
86
fn eq ( & self , other : & Self ) -> bool {
89
87
match ( self , other) {
90
88
( FluentValue :: String ( s) , FluentValue :: String ( s2) ) => s == s2,
@@ -95,7 +93,7 @@ impl<'s> PartialEq for FluentValue<'s> {
95
93
}
96
94
}
97
95
98
- impl < ' s > Clone for FluentValue < ' s > {
96
+ impl Clone for FluentValue < ' _ > {
99
97
fn clone ( & self ) -> Self {
100
98
match self {
101
99
FluentValue :: String ( s) => FluentValue :: String ( s. clone ( ) ) ,
@@ -291,7 +289,7 @@ impl<'source> FluentValue<'source> {
291
289
}
292
290
}
293
291
294
- impl < ' source > From < String > for FluentValue < ' source > {
292
+ impl From < String > for FluentValue < ' _ > {
295
293
fn from ( s : String ) -> Self {
296
294
FluentValue :: String ( s. into ( ) )
297
295
}
0 commit comments