[][src]Enum sc_network::Event

#[must_use]pub enum Event {
    Dht(DhtEvent),
    NotificationStreamOpened {
        remote: PeerId,
        engine_id: ConsensusEngineId,
        role: ObservedRole,
    },
    NotificationStreamClosed {
        remote: PeerId,
        engine_id: ConsensusEngineId,
    },
    NotificationsReceived {
        remote: PeerId,
        messages: Vec<(ConsensusEngineId, Bytes)>,
    },
}

Type for events generated by networking layer.

Variants

Event generated by a DHT.

NotificationStreamOpened

Opened a substream with the given node with the given notifications protocol.

The protocol is always one of the notification protocols that have been registered.

Fields of NotificationStreamOpened

remote: PeerId

Node we opened the substream with.

engine_id: ConsensusEngineId

The concerned protocol. Each protocol uses a different substream.

role: ObservedRole

Role of the remote.

NotificationStreamClosed

Closed a substream with the given node. Always matches a corresponding previous NotificationStreamOpened message.

Fields of NotificationStreamClosed

remote: PeerId

Node we closed the substream with.

engine_id: ConsensusEngineId

The concerned protocol. Each protocol uses a different substream.

NotificationsReceived

Received one or more messages from the given node using the given protocol.

Fields of NotificationsReceived

remote: PeerId

Node we received the message from.

messages: Vec<(ConsensusEngineId, Bytes)>

Concerned protocol and associated message.

Trait Implementations

impl Clone for Event[src]

impl Debug for Event[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>, 
[src]

fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    S: TryInto<T>,
    T: Bounded
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,