Enum libp2p_rendezvous::server::Event [−][src]
pub enum Event {
DiscoverServed {
enquirer: PeerId,
registrations: Vec<Registration>,
},
DiscoverNotServed {
enquirer: PeerId,
error: ErrorCode,
},
PeerRegistered {
peer: PeerId,
registration: Registration,
},
PeerNotRegistered {
peer: PeerId,
namespace: Namespace,
error: ErrorCode,
},
PeerUnregistered {
peer: PeerId,
namespace: Namespace,
},
RegistrationExpired(Registration),
}
Variants
We successfully served a discover request from a peer.
Fields of DiscoverServed
enquirer: PeerId
registrations: Vec<Registration>
We failed to serve a discover request for a peer.
A peer successfully registered with us.
Fields of PeerRegistered
peer: PeerId
registration: Registration
We declined a registration from a peer.
A peer successfully unregistered with us.
RegistrationExpired(Registration)
A registration from a peer expired.
Tuple Fields of RegistrationExpired
0: Registration