Remove warnings from build and satisfied clippy (#1288)

* Prefixed unused functions with underscore

* Applied clippy lints

* Fixed some warnings and removed some `allow` statements
This commit is contained in:
Prikshit Gautam
2023-06-07 14:46:47 +05:30
committed by Keavon Chambers
parent 054acd3cc9
commit 70fcb35444
33 changed files with 54 additions and 60 deletions

View File

@@ -117,7 +117,7 @@ where
}
}
impl<'i, N> FutureWrapperNode<N> {
impl<N> FutureWrapperNode<N> {
pub const fn new(node: N) -> Self {
Self { node }
}