broken fractured commits, only a few errors remaining

This commit is contained in:
Tadeo hepperle
2024-01-23 13:55:12 +01:00
parent 2c40b14230
commit 70e5118d42
47 changed files with 225 additions and 136 deletions
+2 -3
View File
@@ -4,7 +4,6 @@
use super::{RawRpcSubscription, RpcClientT};
use crate::error::Error;
use crate::prelude::*;
use futures::{Stream, StreamExt};
use serde::{de::DeserializeOwned, Serialize};
use serde_json::value::RawValue;
@@ -181,7 +180,7 @@ impl RpcParams {
/// [`StreamExt`] extension trait.
pub struct RpcSubscription<Res> {
inner: RawRpcSubscription,
_marker: PhantomData<Res>,
_marker: std::marker::PhantomData<Res>,
}
impl<Res> std::fmt::Debug for RpcSubscription<Res> {
@@ -198,7 +197,7 @@ impl<Res> RpcSubscription<Res> {
pub fn new(inner: RawRpcSubscription) -> Self {
Self {
inner,
_marker: PhantomData,
_marker: std::marker::PhantomData,
}
}