Type Alias libp2p_kad::KadConnectionType

source ·
pub type KadConnectionType = ConnectionType;
👎Deprecated: Import the kad module instead and refer to this type as kad::ConnectionType.

Aliased Type§

enum KadConnectionType {
    NotConnected = 0,
    Connected = 1,
    CanConnect = 2,
    CannotConnect = 3,
}

Variants§

§

NotConnected = 0

Sender hasn’t tried to connect to peer.

§

Connected = 1

Sender is currently connected to peer.

§

CanConnect = 2

Sender was recently connected to peer.

§

CannotConnect = 3

Sender tried to connect to peer but failed.