error type implementations

This commit is contained in:
Tadeo hepperle
2024-01-22 18:53:04 +01:00
parent a349daaf45
commit 2c40b14230
32 changed files with 269 additions and 207 deletions
+2 -2
View File
@@ -181,7 +181,7 @@ impl RpcParams {
/// [`StreamExt`] extension trait.
pub struct RpcSubscription<Res> {
inner: RawRpcSubscription,
_marker: std::marker::PhantomData<Res>,
_marker: PhantomData<Res>,
}
impl<Res> std::fmt::Debug for RpcSubscription<Res> {
@@ -198,7 +198,7 @@ impl<Res> RpcSubscription<Res> {
pub fn new(inner: RawRpcSubscription) -> Self {
Self {
inner,
_marker: std::marker::PhantomData,
_marker: PhantomData,
}
}