瀏覽代碼

Remove unneeded lifetimes

This makes clippy (and me) happy
Reinis Mazeiks 3 年之前
父節點
當前提交
a8be789761
共有 3 個文件被更改,包括 8 次插入11 次删除
  1. 1 1
      packages/hooks/src/use_shared_state.rs
  2. 1 4
      packages/hooks/src/useref.rs
  3. 6 6
      packages/hooks/src/usestate.rs

+ 1 - 1
packages/hooks/src/use_shared_state.rs

@@ -60,7 +60,7 @@ impl<T> ProvidedStateInner<T> {
 ///
 ///
 ///
-pub fn use_context<'a, T: 'static>(cx: &'a ScopeState) -> Option<UseSharedState<'a, T>> {
+pub fn use_context<T: 'static>(cx: &ScopeState) -> Option<UseSharedState<T>> {
     let state = cx.use_hook(|_| {
         let scope_id = cx.scope_id();
         let root = cx.consume_context::<ProvidedState<T>>();

+ 1 - 4
packages/hooks/src/useref.rs

@@ -110,10 +110,7 @@ use std::{
 ///     }
 /// })
 /// ```
-pub fn use_ref<'a, T: 'static>(
-    cx: &'a ScopeState,
-    initialize_refcell: impl FnOnce() -> T,
-) -> &'a UseRef<T> {
+pub fn use_ref<T: 'static>(cx: &ScopeState, initialize_refcell: impl FnOnce() -> T) -> &UseRef<T> {
     let hook = cx.use_hook(|_| UseRef {
         update: cx.schedule_update(),
         value: Rc::new(RefCell::new(initialize_refcell())),

+ 6 - 6
packages/hooks/src/usestate.rs

@@ -30,10 +30,10 @@ use std::{
 ///     ))
 /// }
 /// ```
-pub fn use_state<'a, T: 'static>(
-    cx: &'a ScopeState,
+pub fn use_state<T: 'static>(
+    cx: &ScopeState,
     initial_state_fn: impl FnOnce() -> T,
-) -> &'a UseState<T> {
+) -> &UseState<T> {
     let hook = cx.use_hook(move |_| {
         let current_val = Rc::new(initial_state_fn());
         let update_callback = cx.schedule_update();
@@ -304,13 +304,13 @@ impl<T: 'static> Clone for UseState<T> {
     }
 }
 
-impl<'a, T: 'static + Display> std::fmt::Display for UseState<T> {
+impl<T: 'static + Display> std::fmt::Display for UseState<T> {
     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
         write!(f, "{}", self.current_val)
     }
 }
 
-impl<'a, T: std::fmt::Binary> std::fmt::Binary for UseState<T> {
+impl<T: std::fmt::Binary> std::fmt::Binary for UseState<T> {
     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
         write!(f, "{:b}", self.current_val.as_ref())
     }
@@ -341,7 +341,7 @@ impl<T: Debug> Debug for UseState<T> {
     }
 }
 
-impl<'a, T> std::ops::Deref for UseState<T> {
+impl<T> std::ops::Deref for UseState<T> {
     type Target = T;
 
     fn deref(&self) -> &Self::Target {