pub enum Event {
    Message {
        propagation_source: PeerId,
        message_id: MessageId,
        message: Message,
    },
    Subscribed {
        peer_id: PeerId,
        topic: TopicHash,
    },
    Unsubscribed {
        peer_id: PeerId,
        topic: TopicHash,
    },
    GossipsubNotSupported {
        peer_id: PeerId,
    },
    SlowPeer {
        peer_id: PeerId,
        failed_messages: FailedMessages,
    },
}Expand description
Event that can be emitted by the gossipsub behaviour.
Variants§
Message
A message has been received.
Fields
§
propagation_source: PeerIdThe peer that forwarded us this message.
Subscribed
A remote subscribed to a topic.
Unsubscribed
A remote unsubscribed from a topic.
Fields
§
peer_id: PeerIdRemote that has unsubscribed.
GossipsubNotSupported
A peer that does not support gossipsub has connected.
Fields
§
peer_id: PeerIdSlowPeer
A peer is not able to download messages in time.
Fields
§
peer_id: PeerIdThe peer_id
§
failed_messages: FailedMessagesThe types and amounts of failed messages that are occurring for this peer.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
 
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more