Skip to content

Commit f23baea

Browse files
Fix clippy::needless_lifetimes lints (#717)
* Fix `clippy::needless_lifetimes` lints * Fix `clippy::doc_markdown` lints
1 parent 9437381 commit f23baea

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

core-foundation/src/array.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ impl<'a, T: FromVoid> Iterator for CFArrayIterator<'a, T> {
5050
}
5151
}
5252

53-
impl<'a, T: FromVoid> ExactSizeIterator for CFArrayIterator<'a, T> {
53+
impl<T: FromVoid> ExactSizeIterator for CFArrayIterator<'_, T> {
5454
fn len(&self) -> usize {
5555
(self.array.len() - self.index) as usize
5656
}

core-foundation/src/base.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -253,21 +253,21 @@ impl TCFType for CFType {
253253
/// A reference to an element inside a container
254254
pub struct ItemRef<'a, T: 'a>(ManuallyDrop<T>, PhantomData<&'a T>);
255255

256-
impl<'a, T> Deref for ItemRef<'a, T> {
256+
impl<T> Deref for ItemRef<'_, T> {
257257
type Target = T;
258258

259259
fn deref(&self) -> &T {
260260
&self.0
261261
}
262262
}
263263

264-
impl<'a, T: fmt::Debug> fmt::Debug for ItemRef<'a, T> {
264+
impl<T: fmt::Debug> fmt::Debug for ItemRef<'_, T> {
265265
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
266266
self.0.fmt(f)
267267
}
268268
}
269269

270-
impl<'a, T: PartialEq> PartialEq for ItemRef<'a, T> {
270+
impl<T: PartialEq> PartialEq for ItemRef<'_, T> {
271271
fn eq(&self, other: &Self) -> bool {
272272
self.0.eq(&other.0)
273273
}
@@ -276,27 +276,27 @@ impl<'a, T: PartialEq> PartialEq for ItemRef<'a, T> {
276276
/// A reference to a mutable element inside a container
277277
pub struct ItemMutRef<'a, T: 'a>(ManuallyDrop<T>, PhantomData<&'a T>);
278278

279-
impl<'a, T> Deref for ItemMutRef<'a, T> {
279+
impl<T> Deref for ItemMutRef<'_, T> {
280280
type Target = T;
281281

282282
fn deref(&self) -> &T {
283283
&self.0
284284
}
285285
}
286286

287-
impl<'a, T> DerefMut for ItemMutRef<'a, T> {
287+
impl<T> DerefMut for ItemMutRef<'_, T> {
288288
fn deref_mut(&mut self) -> &mut T {
289289
&mut self.0
290290
}
291291
}
292292

293-
impl<'a, T: fmt::Debug> fmt::Debug for ItemMutRef<'a, T> {
293+
impl<T: fmt::Debug> fmt::Debug for ItemMutRef<'_, T> {
294294
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
295295
self.0.fmt(f)
296296
}
297297
}
298298

299-
impl<'a, T: PartialEq> PartialEq for ItemMutRef<'a, T> {
299+
impl<T: PartialEq> PartialEq for ItemMutRef<'_, T> {
300300
fn eq(&self, other: &Self) -> bool {
301301
self.0.eq(&other.0)
302302
}
@@ -371,7 +371,7 @@ unsafe impl ToVoid<*const c_void> for *const c_void {
371371
}
372372
}
373373

374-
unsafe impl<'a> ToVoid<CFType> for &'a CFType {
374+
unsafe impl ToVoid<CFType> for &CFType {
375375
fn to_void(&self) -> *const c_void {
376376
self.as_concrete_TypeRef().as_void_ptr()
377377
}

core-foundation/src/string.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ impl CFString {
151151
}
152152
}
153153

154-
impl<'a> PartialEq<&'a str> for CFString {
154+
impl PartialEq<&str> for CFString {
155155
fn eq(&self, other: &&str) -> bool {
156156
unsafe {
157157
let temp = CFStringCreateWithBytesNoCopy(
@@ -167,7 +167,7 @@ impl<'a> PartialEq<&'a str> for CFString {
167167
}
168168
}
169169

170-
impl<'a> PartialEq<CFString> for &'a str {
170+
impl PartialEq<CFString> for &str {
171171
#[inline]
172172
fn eq(&self, other: &CFString) -> bool {
173173
other.eq(self)

core-graphics/src/event.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ bitflags! {
4747
///
4848
/// These constants are the virtual keycodes defined originally in
4949
/// Inside Mac Volume V, pg. V-191. They identify physical keys on a
50-
/// keyboard. The struct contains the values of the ANSIKeyCode,
51-
/// KeyCode, ISOKeyCode and JISKeyCode of the original Carbon headers.
50+
/// keyboard. The struct contains the values of the `ANSIKeyCode`,
51+
/// `KeyCode`, `ISOKeyCode` and `JISKeyCode` of the original Carbon headers.
5252
///
5353
/// Those constants with "ANSI" in the name are labeled
5454
/// according to the key position on an ANSI-standard US keyboard.

core-graphics/src/path.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ pub struct CGPathElementRef<'a> {
8080
phantom: PhantomData<&'a CGPathElement>,
8181
}
8282

83-
impl<'a> CGPathElementRef<'a> {
83+
impl CGPathElementRef<'_> {
8484
fn new<'b>(element: *const CGPathElement) -> CGPathElementRef<'b> {
8585
CGPathElementRef {
8686
element,
@@ -89,7 +89,7 @@ impl<'a> CGPathElementRef<'a> {
8989
}
9090
}
9191

92-
impl<'a> Deref for CGPathElementRef<'a> {
92+
impl Deref for CGPathElementRef<'_> {
9393
type Target = CGPathElement;
9494
fn deref(&self) -> &CGPathElement {
9595
unsafe { &*self.element }

0 commit comments

Comments
 (0)