Enum libp2p_rendezvous::client::Event
source · [−]pub enum Event {
Discovered {
rendezvous_node: PeerId,
registrations: Vec<Registration>,
cookie: Cookie,
},
DiscoverFailed {
rendezvous_node: PeerId,
namespace: Option<Namespace>,
error: ErrorCode,
},
Registered {
rendezvous_node: PeerId,
ttl: Ttl,
namespace: Namespace,
},
RegisterFailed(RegisterError),
Expired {
peer: PeerId,
},
}
Variants
Discovered
We successfully discovered other nodes with using the contained rendezvous node.
DiscoverFailed
We failed to discover other nodes on the contained rendezvous node.
Registered
We successfully registered with the contained rendezvous node.
RegisterFailed(RegisterError)
We failed to register with the contained rendezvous node.
Expired
Fields
peer: PeerId
The connection details we learned from this node expired.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl !UnwindSafe for Event
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more