mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-26 00:01:33 +00:00
*: Fix clippy::derive-partial-eq-without-eq
(#2818)
This commit is contained in:
@ -40,7 +40,7 @@ use std::{
|
||||
};
|
||||
|
||||
/// Outbound probe failed or was aborted.
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum OutboundProbeError {
|
||||
/// Probe was aborted because no server is known, or all servers
|
||||
/// are throttled through [`Config::throttle_server_period`].
|
||||
@ -54,7 +54,7 @@ pub enum OutboundProbeError {
|
||||
Response(ResponseError),
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum OutboundProbeEvent {
|
||||
/// A dial-back request was sent to a remote peer.
|
||||
Request {
|
||||
|
Reference in New Issue
Block a user