[][src]Struct libp2p::floodsub::protocol::FloodsubMessage

pub struct FloodsubMessage {
    pub source: PeerId,
    pub data: Vec<u8>,
    pub sequence_number: Vec<u8>,
    pub topics: Vec<Topic>,
}

A message received by the floodsub system.

Fields

source: PeerId

Id of the peer that published this message.

data: Vec<u8>

Content of the message. Its meaning is out of scope of this library.

sequence_number: Vec<u8>

An incrementing sequence number.

topics: Vec<Topic>

List of topics this message belongs to.

Each message can belong to multiple topics at once.

Trait Implementations

impl Clone for FloodsubMessage[src]

impl Debug for FloodsubMessage[src]

impl Eq for FloodsubMessage[src]

impl Hash for FloodsubMessage[src]

impl PartialEq<FloodsubMessage> for FloodsubMessage[src]

impl StructuralEq for FloodsubMessage[src]

impl StructuralPartialEq for FloodsubMessage[src]

Auto Trait Implementations

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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,